X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/a130412e611a2a29bf0cc9bbbfdefea0b1d0061f..5e0dd39c630bae5dabc96f33a16419f066d6f435:/project/static/js/jquery.logging.js

diff --git a/project/static/js/jquery.logging.js b/project/static/js/jquery.logging.js
index 1afd8bec..315d48f5 100644
--- a/project/static/js/jquery.logging.js
+++ b/project/static/js/jquery.logging.js
@@ -1,33 +1,35 @@
 (function($) {
-	const LEVEL_DEBUG = 1;
-	const LEVEL_INFO = 2;
-	const LEVEL_WARN = 3;
-
-	const LOG_LEVEL = LEVEL_DEBUG;
-
-	var mozillaLog = function(msg) {
-		if (window.console) console.log(msg);
+	var LEVEL_DEBUG = 1;
+	var LEVEL_INFO = 2;
+	var LEVEL_WARN = 3;
+	var LOG_LEVEL = LEVEL_DEBUG;
+
+	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; };
-
-	$.log = function(message, level) {
-		if (level == null) level = LEVEL_INFO;
-		if (message == null) message = 'TRACE';
-		if (level < LOG_LEVEL)
-			return false;
+	var defaultLog = function() { 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;
+	else if ($.browser.safari)
+	    $.log.browserLog = safariLog;
 	else if($.browser.opera)
-		$.log.browserLog = operaLog
+		$.log.browserLog = operaLog;
 	else 
 		$.log.browserLog = defaultLog;