You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thank you for your library and your great work!
I am using PaddleSharp in my project and I have activated the loggs with the boolean GLogEnabled It looks like it redirect the logs from PaddleInferenceC to the Console.Writeline / Standard output somehow. In my project I am using Serilog for logging. Is there any way to write an adapter for Serilog ?
Many thanks!
The text was updated successfully, but these errors were encountered:
As you guessed it's a C native method from PaddleInferernce to enable its logging towards stdout of the process, so no changes like logging to elsewhere can be made in .NET managed side.
It's still possible to filter logging from PaddleInferernce out of stdout by preventing any other echoing to stdout like Serilog, then redirect the stdout to somewhere like a file with >.
Hello,
First, thank you for your library and your great work!
I am using PaddleSharp in my project and I have activated the loggs with the boolean
GLogEnabled
It looks like it redirect the logs from PaddleInferenceC to the Console.Writeline / Standard output somehow. In my project I am using Serilog for logging. Is there any way to write an adapter for Serilog ?Many thanks!
The text was updated successfully, but these errors were encountered: