Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 795 | chris | 1 | using System; |
| 2 | using System.Collections.Generic; |
||
| 3 | using System.Linq; |
||
| 4 | using System.Text; |
||
| 5 | using System.Threading.Tasks; |
||
| 6 | |||
| 7 | using System.Diagnostics; |
||
| 8 | |||
| 9 | namespace BauzoidNET.app |
||
| 10 | { |
||
| 11 | public class LogUtil |
||
| 12 | { |
||
| 13 | private LogUtil() |
||
| 14 | { |
||
| 15 | } |
||
| 16 | |||
| 17 | public static void log(string tag, string message) |
||
| 18 | { |
||
| 19 | Debug.WriteLine("[" + tag + "] " + message); |
||
| 20 | } |
||
| 21 | } |
||
| 22 | } |