Skip to content

Commit bb834e8

Browse files
authored
Merge branch 'develop' into feature/SF-6592
2 parents 5b6b1f3 + 4b446e8 commit bb834e8

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Stackify API for .NET
2-
3-
[![Build status](https://ci.appveyor.com/api/projects/status/6suxse470ab4bdxl?svg=true)](https://ci.appveyor.com/project/jaredcnance/stackify-api-dotnet)
1+
# Stackify API for .NET [![Build status](https://ci.appveyor.com/api/projects/status/6suxse470ab4bdxl?svg=true)](https://ci.appveyor.com/project/jaredcnance/stackify-api-dotnet)
42

53
| Package Name | NuGet Version |
64
|-----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -230,8 +228,6 @@ If you use a custom logging framework or a framework not currently supported, yo
230228
StackifyLib.Logger.Queue("DEBUG", "My log message");
231229
StackifyLib.Logger.QueueException("Test exception", new ApplicationException("Sky is falling"));
232230

233-
StackifyLib.Logger.Shutdown(); // should be called before your app closes to flush the log queue
234-
235231
// More advanced example
236232
LogMsg msg = new LogMsg {
237233
Ex = StackifyError.New(new ApplicationException("Exception goes here")),
@@ -240,7 +236,9 @@ LogMsg msg = new LogMsg {
240236
Msg = "My log message",
241237
Level = "ERROR"
242238
};
239+
243240
StackifyLib.Logger.QueueLogObject(msg);
241+
StackifyLib.Logger.Shutdown(); // should be called before your app closes to flush the log queue
244242
```
245243

246244
*Make sure you call StackifyLib.Logger.Shutdown() before your app ends to flush the queue*

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ deploy:
3131
secure: UOvRrTDVcxyLUJYZVWZJUIrBCxTeaW5UCOKWHOWgaWaV8g+mupAamSPY5yHaJa0b
3232
skip_symbols: false
3333
on:
34-
branch: Feature/SF-6592
34+
branch: develop

0 commit comments

Comments
 (0)