Skip to content

Commit

Permalink
[downlader] Add downloader name to log
Browse files Browse the repository at this point in the history
  • Loading branch information
kilativ-dotcom committed Oct 1, 2024
1 parent 84fa564 commit 502385b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DownloaderGit : public Downloader
{
if (!sc_fs_create_directory(downloadPath.c_str()))
{
SC_LOG_ERROR("Can't download file. Can't create folder. " << downloadPath);
SC_LOG_ERROR("DownloaderGit: Can't download file. Can't create folder. " << downloadPath);
return false;
}

Expand Down Expand Up @@ -83,7 +83,7 @@ class DownloaderGit : public Downloader
{
if (!sc_fs_create_directory(downloadPath.c_str()))
{
SC_LOG_ERROR("Can't download repository. Can't create folder. " << downloadPath);
SC_LOG_ERROR("DownloaderGit: Can't download repository. Can't create folder. " << downloadPath);
return false;
}

Expand Down

0 comments on commit 502385b

Please sign in to comment.