diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-03 15:16:58 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-03 15:16:58 -0400 |
commit | 2c101f97a5465bcf582bb6a0588b879874a783e4 (patch) | |
tree | 36c8c3403c339b9627195bc31081bde11f5bf660 | |
parent | a463a05607c89922af7e908b39aa897b8d23bfbf (diff) | |
download | SMAPI-2c101f97a5465bcf582bb6a0588b879874a783e4.tar.gz SMAPI-2c101f97a5465bcf582bb6a0588b879874a783e4.tar.bz2 SMAPI-2c101f97a5465bcf582bb6a0588b879874a783e4.zip |
show debug messages in log parser by default
-rw-r--r-- | docs/release-notes.md | 1 | ||||
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index 7668dc57..210f4496 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -52,6 +52,7 @@ * For the log parser: * Redesigned upload page to make it more intuitive for new players. + * Changed filters to show `DEBUG` messages by default. * Fixed issue parsing content packs with no description. * For SMAPI developers: diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index 79cd7a2b..5366febd 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -20,7 +20,7 @@ showMods: @Json.Serialize(Model.ParsedLog?.Mods?.Select(p => Model.GetSlug(p.Name)).Distinct().ToDictionary(slug => slug, slug => true), new JsonSerializerSettings { Formatting = Formatting.None }), showLevels: { @LogLevel.Trace.ToString().ToLower(): false, - @LogLevel.Debug.ToString().ToLower(): false, + @LogLevel.Debug.ToString().ToLower(): true, @LogLevel.Info.ToString().ToLower(): true, @LogLevel.Alert.ToString().ToLower(): true, @LogLevel.Warn.ToString().ToLower(): true, |