2009-06-07 20:59:43 +02:00
|
|
|
/*
|
2009-06-11 19:43:45 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership.
|
|
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
* (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* $Id: file 64488 2006-03-10 17:32:09Z paulo $
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Init default logger level ...
|
|
|
|
var wLogger = new Log4js.getLogger("WiseMapping");
|
|
|
|
wLogger.setLevel(Log4js.Level.ALL);
|
2009-06-12 02:47:15 +02:00
|
|
|
//wLogger.addAppender(new Log4js.BrowserConsoleAppender());
|
2009-06-11 19:43:45 +02:00
|
|
|
|
|
|
|
// Is logger service available ?
|
|
|
|
if (window.LoggerService)
|
|
|
|
{
|
|
|
|
Log4js.WiseServerAppender = function()
|
|
|
|
{
|
|
|
|
this.layout = new Log4js.SimpleLayout();
|
|
|
|
};
|
|
|
|
|
|
|
|
Log4js.WiseServerAppender.prototype = Log4js.extend(new Log4js.Appender(), {
|
|
|
|
/**
|
|
|
|
* @see Log4js.Appender#doAppend
|
|
|
|
*/
|
|
|
|
doAppend: function(loggingEvent) {
|
|
|
|
try {
|
|
|
|
var message = this.layout.format(loggingEvent);
|
|
|
|
var level = this.levelCode(loggingEvent);
|
|
|
|
|
|
|
|
window.LoggerService.logError(level, message);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
alert(e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* toString
|
|
|
|
*/
|
|
|
|
toString: function() {
|
|
|
|
return "Log4js.WiseServerAppender";
|
|
|
|
},
|
|
|
|
|
|
|
|
levelCode: function(loggingEvent)
|
|
|
|
{
|
|
|
|
var retval;
|
|
|
|
switch (loggingEvent.level) {
|
|
|
|
case Log4js.Level.FATAL:
|
|
|
|
retval = 3;
|
|
|
|
break;
|
|
|
|
case Log4js.Level.ERROR:
|
|
|
|
retval = 3;
|
|
|
|
break;
|
|
|
|
case Log4js.Level.WARN:
|
|
|
|
retval = 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
retval = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
wLogger.addAppender(new Log4js.WiseServerAppender());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Handle error events ...
|
|
|
|
window.onerror = function(sMsg, sUrl, sLine)
|
|
|
|
{
|
|
|
|
window.hasUnexpectedErrors = true;
|
|
|
|
var msg = sMsg + ' (' + sUrl + ', line ' + sLine + ')';
|
|
|
|
wLogger.fatal(msg);
|
|
|
|
|
|
|
|
return true;
|
2009-06-14 15:02:27 +02:00
|
|
|
};
|