feat(tailer): added Tailer.run call

This commit is contained in:
dancingCycle 2021-11-30 09:19:53 -05:00
parent bd6122b44e
commit 39a75c0119
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
TailerListener listener = new MyListener();
Tailer tailer = new Tailer(new File("NetPeerManager.log"), listener, 500);
tailer.run();
return;
}
}