mirror of
https://github.com/Ellpeck/ExtremelySimpleLogger.git
synced 2024-11-22 10:03:29 +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);
|
builder.Append(message);
|
||||||
// stack trace
|
// stack trace
|
||||||
if (e != null)
|
if (e != null)
|
||||||
builder.Append($"\n{e.StackTrace}");
|
builder.Append($"\n{e}");
|
||||||
return builder.ToString();
|
return builder.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue