| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {print, warn} from './facade/lang'; | 
					
						
							|  |  |  | import {Injectable} from './di/decorators'; | 
					
						
							| 
									
										
										
										
											2016-04-25 19:52:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Note: Need to rename warn as in Dart
 | 
					
						
							|  |  |  | // class members and imports can't use the same name.
 | 
					
						
							|  |  |  | let _warnImpl = warn; | 
					
						
							| 
									
										
										
										
											2015-12-15 08:34:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | @Injectable() | 
					
						
							|  |  |  | export class Console { | 
					
						
							|  |  |  |   log(message: string): void { print(message); } | 
					
						
							| 
									
										
										
										
											2016-04-25 19:52:24 -07:00
										 |  |  |   // Note: for reporting errors use `DOM.logError()` as it is platform specific
 | 
					
						
							|  |  |  |   warn(message: string): void { _warnImpl(message); } | 
					
						
							|  |  |  | } |