is there a way to reduce the verbosity of the console output of the Astra SDK?
if not, that would be a nice feature to add…
all the best
joerg
is there a way to reduce the verbosity of the console output of the Astra SDK?
if not, that would be a nice feature to add…
all the best
joerg
You can edit astra.toml (located beside astra.dll/libastra.dylib/libastra.so) and set console_output=false and file_output=false, if desired.
unfortunately this doesn’t work.
i still get tons of INFO messages.
i also experimented with changing the level-setting. this also didn’t help. i could only make it worse by setting it to trace
best
j
Astra SDK v0.5.0 is out. One of the enhancements is the addition of
console_output = true file_output = true
settings to astra.toml. You can set either or both to false to disable logging output.
(The actual logging levels are still kind of weird. INFO will be included in all log levels. That’s a longer process to fix.)
With the new SDK, I do no have any log anymore.
To enable the console output, I suppose i need to add “astra.toml” to my output folder (where astra.dll is located ).
Unfortunately, this does not work.
Any idea @josh ?
Thanks
Yes, if you want console output you need astra.toml to exist beside astra.dll and it should look like this:
# trace, debug, info, warn, error, fatal
level = "warn"
console_output = true
#file_output = true
[plugins]
#path = "Plugins"