Skip to content
Snippets Groups Projects
Commit 4554f7c5 authored by Kevin Gaab's avatar Kevin Gaab
Browse files

Adjustede double [[]] in the Logging Module

parent 4a590324
No related merge requests found
......@@ -23,16 +23,16 @@
switch (loglevel)
{
case 0:
prefix = "[DEBUG]";
prefix = "DEBUG";
break;
case 1:
prefix = "[INFO]";
prefix = "INFO";
break;
case 2:
prefix = "[WARNING]";
prefix = "WARNING";
break;
case 3:
prefix = "[ERROR]";
prefix = "ERROR";
break;
}
......
......@@ -84,6 +84,7 @@ namespace LauncherNetCore
}
else
{
await GaabLogging.Log(filename + " downloadng...", "update_modpack");
await gcdn.DownloadCompressedFile(this.dlServer + "/" + remoteFile.Path + ".zst", localFilePath, this.listbox_activity, filename);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment