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