Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 1cc9783

Browse files
committed
fix: comments
1 parent abb9615 commit 1cc9783

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

engine/config/yaml_config.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,7 @@ void YamlHandler::WriteYamlFile(const std::string& file_path) const {
289289
outFile << "version: " << yaml_node_["version"].as<std::string>() << "\n";
290290
}
291291
if (yaml_node_["files"] && yaml_node_["files"].size()) {
292-
outFile << "files: # can be universal protocol (models://) "
293-
"OR absolute local file path (file://) OR https remote URL "
294-
"(https://)\n";
292+
outFile << "files: # Can be relative OR absolute local file path\n";
295293
for (const auto& source : yaml_node_["files"]) {
296294
outFile << " - " << source << "\n";
297295
}

engine/services/download_service.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ cpp::result<bool, std::string> DownloadService::Download(
173173
CTL_INF("Existing file size: " << download_item.downloadUrl << " - "
174174
<< download_item.localPath.string()
175175
<< " - " << existing_file_size);
176+
CTL_INF("Download item size: " << download_item.bytes.value());
176177
auto missing_bytes = download_item.bytes.value() - existing_file_size;
177178
if (missing_bytes > 0) {
178179
CLI_LOG("Found unfinished download! Additional "

0 commit comments

Comments
 (0)