Skip to content

Commit

Permalink
[fix] opabsl: avoid shadowing of native js function.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthuraa committed Aug 31, 2012
1 parent 49cd55a commit f7f349a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/plugins/opabsl/jsbsl/bslSyslog.js
Expand Up @@ -27,9 +27,9 @@ function fatal(topic, value) {
}

/**
* @register {string, string -> void}
* @register {string, string -> void} error
*/
function error(topic, value) {
function bslsyslog_error(topic, value) {
if (console)
console.error("[Opa]", topic, value);
}
Expand Down

0 comments on commit f7f349a

Please sign in to comment.