-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTextFileLogger.cs
More file actions
29 lines (26 loc) · 782 Bytes
/
TextFileLogger.cs
File metadata and controls
29 lines (26 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Caliburn.Micro;
using System.IO;
namespace Netduino.Core.Service
{
public class TextFileLogger : ILog
{
public void Error(Exception exception)
{
File.AppendAllText("log.txt", exception.Message);
}
public void Info(string format, params object[] args)
{
File.AppendAllText("log.txt", string.Format(format,args));
File.AppendAllText("log.txt", Environment.NewLine);
}
public void Warn(string format, params object[] args)
{
File.AppendAllText("log.txt", string.Format(format, args));
File.AppendAllText("log.txt", Environment.NewLine);
}
}
}