| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Text;
|
|---|
| 4 |
|
|---|
| 5 | namespace IndianHealthService.BMXNet.Services
|
|---|
| 6 | {
|
|---|
| 7 | internal class NullLog:Log
|
|---|
| 8 | {
|
|---|
| 9 | public bool IsLogging
|
|---|
| 10 | {
|
|---|
| 11 | get { return false; }
|
|---|
| 12 | set { }
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | public void Log(string aClass, string aCategory, params string[] lines)
|
|---|
| 16 | {
|
|---|
| 17 | }
|
|---|
| 18 |
|
|---|
| 19 | public void Log(string aClass, string aCategory, Exception anException, params string[] lines)
|
|---|
| 20 | {
|
|---|
| 21 | }
|
|---|
| 22 |
|
|---|
| 23 | }
|
|---|
| 24 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.