Created
March 29, 2019 03:29
-
-
Save Sneezry/4cba28931778d787813ea96d7f4c76cc to your computer and use it in GitHub Desktop.
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
abstract class LoggerBase { | |
constructrue(private _taskContext: TaskContext){} | |
abstract logInfo(message: string, sender?: string): void; | |
abstract logWarning(message: string, sender?: string): void; | |
abstract logError(message: string, sender?: string): void; | |
abstract logSuccess(message?: string, sender?: string): void; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment