mirror of
https://github.com/Ellpeck/ExtremelySimpleLogger.git
synced 2024-11-21 17:53:28 +01:00
actually print the full exception by default
This commit is contained in:
parent
ac20d96a9f
commit
404dc0ca8d
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ namespace ExtremelySimpleLogger {
|
|||
builder.Append(message);
|
||||
// stack trace
|
||||
if (e != null)
|
||||
builder.Append($"\n{e.StackTrace}");
|
||||
builder.Append($"\n{e}");
|
||||
return builder.ToString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue