Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created September 17, 2017 16:43
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 rahulsahay19/8fca1d2e39382399c5390d0e60db49b0 to your computer and use it in GitHub Desktop.
Save rahulsahay19/8fca1d2e39382399c5390d0e60db49b0 to your computer and use it in GitHub Desktop.
LoggingService
import { Injectable } from '@angular/core';
@Injectable()
export class LoggingService {
constructor() { }
logToConsole(mesg:string){
console.log(mesg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment