Skip to content

Instantly share code, notes, and snippets.

@wKoza
Last active December 25, 2016 09:47
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 wKoza/1892f31fc6dfa7c93f8f0792afe6b7c0 to your computer and use it in GitHub Desktop.
Save wKoza/1892f31fc6dfa7c93f8f0792afe6b7c0 to your computer and use it in GitHub Desktop.
import { Optional } from '@angular/core';
import { LoggerService } from "./logger.service";
constructor(@Optional() private logger:LoggerService){
if (this.logger) {
this.logger.debug('Dans le constructeur ...');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment