Mercurial > repos > IBBoard
annotate Logging/SilentLogger.cs @ 40:c71855e241fc
* Add method to clean up a string as a valid XML ID
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 22 Aug 2009 10:50:17 +0000 |
parents | cc7fae81afec |
children |
rev | line source |
---|---|
16 | 1 // This file (SilentLogger.cs) is a part of the IBBoard library and is copyright 2009 IBBoard. |
2 // | |
3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. | |
4 | |
37 | 5 using System; |
6 | |
7 namespace IBBoard.Logging | |
8 { | |
9 /// <summary> | |
10 /// Summary description for SilentLogger. | |
11 /// </summary> | |
12 public class SilentLogger : Logger | |
13 { | |
14 public SilentLogger() : base(null) | |
15 { | |
16 } | |
17 | |
18 protected override void LogMessage(LogItem item) | |
0
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
19 { |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
20 //Do nothing |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
21 } |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
22 |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
23 protected override void LogMessageString (string str) |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
24 { |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
25 //Do nothing |
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
26 } |
37 | 27 |
28 } | |
29 } |