Skip to content

Commit 3b0d74a

Browse files
committed
Simple Log method without requiring severity, NuGet v1.0.8
1 parent a1829bd commit 3b0d74a

34 files changed

Lines changed: 33 additions & 15 deletions

.vs/SyslogLogging/v14/.suo

512 Bytes
Binary file not shown.

LoggingModule/LoggingModule.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,11 @@ public void Close()
123123
if (UDP != null) UDP.Close();
124124
}
125125

126+
public void Log(string msg)
127+
{
128+
Log(Severity.Debug, msg);
129+
}
130+
126131
public void Log(Severity sev, string msg)
127132
{
128133
if (String.IsNullOrEmpty(msg)) return;

LoggingModule/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.7.0")]
36-
[assembly: AssemblyFileVersion("1.0.7.0")]
35+
[assembly: AssemblyVersion("1.0.8.0")]
36+
[assembly: AssemblyFileVersion("1.0.8.0")]
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)