bb2c4eaa90f03a0e1f26351607a6df507b6ea2d1
[app.jsdoc] / JSDOC / Log.js
1 /**
2  * @class Log
3  * @namespace JSDOC
4  *
5  * Standard Logging..
6  * @scope JSDOC
7  * @static
8  */
9  
10 Log = {
11     
12     warn : function(str) {
13         print("Warn: " +str );
14     },
15     inform : function(str) {
16         print("Inform: " +str );
17     },
18     close : function() { },
19     flush : function() { },
20     out: false,
21     warnings : [],
22     verbose : false    
23 };