-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add log interface for location problem
- Loading branch information
1 parent
f8a4c86
commit f5811cf
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
taskscheduler/src/main/java/com/silencedut/taskscheduler/ILog.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.silencedut.taskscheduler; | ||
|
||
/** | ||
* @author SilenceDut | ||
* @date 2019/3/25 | ||
* 外部提供日志输出接口 | ||
*/ | ||
public interface ILog { | ||
|
||
void info(String info); | ||
void error(String error); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters