Skip to content

Commit

Permalink
Rename console property to match the file one, make this 0.3.1 not 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xen-42 committed Dec 27, 2023
1 parent 4d9c9fb commit d2c4318
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Winch/Logging/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Logger()
CleanupLogs();
}

_writeLogsToConsole = WinchConfig.GetProperty("EnableLogConsole", true);
_writeLogsToConsole = WinchConfig.GetProperty("WriteLogsToConsole", true);

if (_writeLogsToConsole)
{
Expand Down
2 changes: 1 addition & 1 deletion Winch/mod_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"Name": "Winch",
"Author": "Hacktix",
"ModGUID": "hacktix.winch",
"Version": "0.4.0"
"Version": "0.3.1"
}
4 changes: 2 additions & 2 deletions WinchCommon/Config/DefaultConfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"WriteLogsToFile": true,
"WriteLogsToConsole": false,
"LogLevel": "DEBUG",
"LogsFolder": "Logs",
"DetailedLogSources": false,
"EnableDeveloperConsole": true,
"MaxLogFiles": 10,
"EnableLogConsole": true
"MaxLogFiles": 10
}

0 comments on commit d2c4318

Please sign in to comment.