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
If you use a custom logging framework or a framework not currently supported, you can easily send logs to Stackify with our core library and API like so:
199
199
200
-
StackifyLib.Logger.Queue("DEBUG", "My log message");
201
-
StackifyLib.Logger.QueueException("Test exception", new ApplicationException("Sky is falling"));
202
-
203
-
StackifyLib.Logger.Shutdown(); //should be called before your app closes to flush the log queue
200
+
StackifyLib.Logger.Queue("DEBUG", "My log message");
201
+
StackifyLib.Logger.QueueException("Test exception", new ApplicationException("Sky is falling"));
202
+
203
+
StackifyLib.Logger.Shutdown(); //should be called before your app closes to flush the log queue
0 commit comments