File

src/client/app/modules/core/services/console.service.ts

Index

Methods

Methods

Public debug
debug(m: any)
Returns : void
Public error
error(m: any)
Returns : void
Public info
info(m: any)
Returns : void
Public log
log(m: any)
Returns : void
Public warn
warn(m: any)
Returns : void
import { Injectable } from '@angular/core';


import { IConsole } from '../interfaces/iconsole';

@Injectable()
export class ConsoleService implements IConsole {
  
  public log(m: any): void { return; }
  public debug(m: any): void { return; }
  public error(m: any): void { return; }
  public warn(m: any): void { return; }
  public info(m: any): void { return; }

}

results matching ""

    No results matching ""