Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
herve-er committed Nov 5, 2024
1 parent 89e9b5b commit 607ebdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libsyncengine/progress/progressinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ bool ProgressInfo::setProgress(const SyncPath &path, const int64_t completed) {

const auto it = _currentItems.find(normalizedPath);
if (it == _currentItems.end() || it->second.empty()) {
LOG_INFO(Log::instance()->getLogger(),
LOGW_INFO(Log::instance()->getLogger(),
L"Item not found in ProgressInfo list (normal for ommited operation): " << Utility::formatSyncPath(path));
return true;
}
Expand All @@ -142,7 +142,7 @@ bool ProgressInfo::setProgressComplete(const SyncPath &path, const SyncFileStatu

const auto it = _currentItems.find(normalizedPath);
if (it == _currentItems.end() || it->second.empty()) {
LOG_INFO(Log::instance()->getLogger(),
LOGW_INFO(Log::instance()->getLogger(),
L"Item not found in ProgressInfo list (normal for ommited operation): " << Utility::formatSyncPath(path));
return true;
}
Expand Down

0 comments on commit 607ebdb

Please sign in to comment.