Skip to content

Instantly share code, notes, and snippets.

@Sneezry
Created March 29, 2019 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sneezry/4cba28931778d787813ea96d7f4c76cc to your computer and use it in GitHub Desktop.
Save Sneezry/4cba28931778d787813ea96d7f4c76cc to your computer and use it in GitHub Desktop.
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