fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' of git@stigma:platforma
[redakcja.git]
/
project
/
static
/
js
/
jquery.logging.js
diff --git
a/project/static/js/jquery.logging.js
b/project/static/js/jquery.logging.js
index
1afd8be
..
0f0df51
100644
(file)
--- a/
project/static/js/jquery.logging.js
+++ b/
project/static/js/jquery.logging.js
@@
-5,29
+5,32
@@
const LOG_LEVEL = LEVEL_DEBUG;
const LOG_LEVEL = LEVEL_DEBUG;
- var mozillaLog = function(msg) {
- if (window.console) console.log(msg);
+ var mozillaLog = function() {
+ if (window.console)
+ console.log.apply(this, arguments);
};
};
- var operaLog = function(msg) {
- opera.postError(msg);
+ var safariLog = function() {
+ if (window.console)
+ console.log.apply(console, arguments);
+ };
+
+ var operaLog = function() {
+ opera.postError(arguments.join(' '));
};
};
- var defaultLog = function(
msg
) { return false; };
+ var defaultLog = function() { return false; };
- $.log = function(message, level) {
- if (level == null) level = LEVEL_INFO;
- if (message == null) message = 'TRACE';
- if (level < LOG_LEVEL)
- return false;
-
- return $.log.browserLog(message);
+ $.log = function( ) {
+ return $.log.browserLog.apply(this, arguments);
};
};
- if ($.browser.mozilla
|| $.browser.safari
)
+ if ($.browser.mozilla)
$.log.browserLog = mozillaLog;
$.log.browserLog = mozillaLog;
+ else if ($.browser.safari)
+ $.log.browserLog = safariLog;
else if($.browser.opera)
else if($.browser.opera)
- $.log.browserLog = operaLog
+ $.log.browserLog = operaLog
;
else
$.log.browserLog = defaultLog;
else
$.log.browserLog = defaultLog;