Skip to content

Commit

Permalink
fixed bug when logging "something like this %s", param <= the last pa…
Browse files Browse the repository at this point in the history
…rameter was not printed into logger
  • Loading branch information
darwin committed Oct 3, 2009
1 parent 15ce82f commit eaff33b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion firefox/chrome/content/firelogger.js
Expand Up @@ -1179,7 +1179,6 @@ FBL.ns(function() {
if (typeof template != "string") template = template._; // this is a special case for exceptions (FirePython hack)
if (!template) template = "";
var parts = template.split(/%[a-zA-Z]{0,1}/);
if (parts[parts.length-1]=="") parts.pop();
var i = 1;
if (parts.length>0) {
for (i=0; i<parts.length; i++) {
Expand Down

0 comments on commit eaff33b

Please sign in to comment.