DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / tools / LoggerDebug.java
1 package tools;
2
3 public class LoggerDebug {
4     private static LoggerDebug instance = new LoggerDebug();
5
6     public static LoggerDebug getInstance() {
7         return instance;
8     }
9
10     public void log(String logLine) {
11         System.out.println(logLine);
12     }
13 }