We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The "warn" log setting is printing all messages. I found what to fix:
In utils.ts in lines 91 and 92, replace this:
utils.ts
case "warn": return !["debug","info","log"].includes(logLevel);
with this:
case "warn": return !["debug","info","log"].includes(logEvent.level);
like in lines 93 and 94 below it.
The text was updated successfully, but these errors were encountered:
Thanks for the report, I'll see that I'll release a fixed version later today!
Sorry, something went wrong.
Fixed, thank you! Deployed in https://github.com/czottmann/obsidian-logstravaganza/releases/tag/2.1.1
No branches or pull requests
The "warn" log setting is printing all messages. I found what to fix:
In
utils.ts
in lines 91 and 92,replace this:
with this:
like in lines 93 and 94 below it.
The text was updated successfully, but these errors were encountered: