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