13 lines
		
	
	
		
			233 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			233 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // #docregion
 | |
| import { Injectable } from '@angular/core';
 | |
| 
 | |
| @Injectable()
 | |
| export class Logger {
 | |
|   logs: string[] = []; // capture logs for testing
 | |
| 
 | |
|   log(message: string) {
 | |
|     this.logs.push(message);
 | |
|     console.log(message);
 | |
|   }
 | |
| }
 |