While doing experiment over tinylog the issue i am facing is am not able to print the run time exception logs.
For ex. int a =0 ;int b = 10;int c = b/a;
As this will give arithmetic exception but this is not getting recorder in logs.
While doing experiment over tinylog the issue i am facing is am not able to print the run time exception logs.
For ex. int a =0 ;int b = 10;int c = b/a;
As this will give arithmetic exception but this is not getting recorder in logs.
Copyright © 2021 Jogjafile Inc.
You just need to catch the runtime exception and pass it to the logger:
Edit: Alternatively, you can also use an UncaughtExceptionHandler for logging uncaught exceptions: