Skip to content

Commit f08dc79

Browse files
committed
Updated licensing information and fixed error in one of the examples.
1 parent fec107a commit f08dc79

104 files changed

Lines changed: 307 additions & 344 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Source/NuLog.ConsoleTest/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 10/20/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
55
* GitHub: https://github.com/ivanpointer/NuLog
66
*/
77
using System;

Source/NuLog.Legacy/LogLevelsConfigExtender.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 10/10/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78
using NuLog.Configuration;

Source/NuLog.Legacy/SimpleLoggerExt.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 10/10/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

Source/NuLog.MVC/LoggingController.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 11/12/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

Source/NuLog.Samples/Arguments.cs

Lines changed: 0 additions & 139 deletions
This file was deleted.

Source/NuLog.Samples/CustomizeSamples/S1_1_BasicAnatomyOfATarget/ColorConsoleTarget.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 11/11/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

Source/NuLog.Samples/CustomizeSamples/S1_2_ASimpleTarget/ASimpleTargetSample.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 11/11/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

@@ -23,7 +24,7 @@ public ASimpleTargetSample(string section, string sample) : base(section, sample
2324
#endregion
2425

2526
// Logging example
26-
public override void ExecuteSample(Arguments args)
27+
public override void ExecuteSample()
2728
{
2829
LoggerFactory.Initialize("CustomizeSamples/S1_2_ASimpleTarget/NuLog.json");
2930
var logger = LoggerFactory.GetLogger();

Source/NuLog.Samples/CustomizeSamples/S1_2_ASimpleTarget/ColorConsoleTarget.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 11/11/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

Source/NuLog.Samples/CustomizeSamples/S1_3_MakingALayoutTarget/ColorConsoleTarget.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 11/11/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

Source/NuLog.Samples/CustomizeSamples/S1_3_MakingALayoutTarget/MakingALayoutTargetSample.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/*
22
* Author: Ivan Andrew Pointer (ivan@pointerplace.us)
33
* Date: 11/11/2014
4-
* License: MIT (http://opensource.org/licenses/MIT)
4+
* License: MIT (https://raw.githubusercontent.com/ivanpointer/NuLog/master/LICENSE)
5+
* Project Home: http://www.nulog.info
56
* GitHub: https://github.com/ivanpointer/NuLog
67
*/
78

@@ -23,7 +24,7 @@ public MakingALayoutTargetSample(string section, string sample) : base(section,
2324
#endregion
2425

2526
// Logging example
26-
public override void ExecuteSample(Arguments args)
27+
public override void ExecuteSample()
2728
{
2829
LoggerFactory.Initialize("CustomizeSamples/S1_3_MakingALayoutTarget/NuLog.json");
2930
var logger = LoggerFactory.GetLogger();

0 commit comments

Comments
 (0)