We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d48c86 commit fef26e8Copy full SHA for fef26e8
1 file changed
modules/DependencyControl/Logger.moon
@@ -57,7 +57,8 @@ class Logger
57
line = table.concat({linePre, @usePrefixFile and prefix or "", msg, lineFeed})
58
@handle\write(line)\flush!
59
60
- assert level > 1,"#{indentStr}Error: #{prefixWin}#{msg}"
+ -- for some reason the stack trace gets swallowed when not doing the replace
61
+ assert level > 1,"#{indentStr}Error: #{prefixWin}#{msg\gsub ':', ': '}"
62
if show
63
aegisub.log level, table.concat({indentStr, prefixWin, msg, lineFeed})
64
0 commit comments