Clean up log output from determine-basal.js
This commit is contained in:
parent
157dc097d1
commit
e6994bd4b3
1 changed files with 1 additions and 3 deletions
|
@ -38,14 +38,12 @@ public class LoggerCallback extends ScriptableObject {
|
|||
if (L.isEnabled(L.APS))
|
||||
log.debug(obj1.toString().trim());
|
||||
logBuffer.append(obj1.toString());
|
||||
// logBuffer.append(' ');
|
||||
}
|
||||
|
||||
public void jsFunction_error(Object obj1) {
|
||||
if (L.isEnabled(L.APS))
|
||||
log.error(obj1.toString().trim());
|
||||
errorBuffer.append(obj1.toString());
|
||||
// errorBuffer.append(' ');
|
||||
}
|
||||
|
||||
|
||||
|
@ -60,4 +58,4 @@ public class LoggerCallback extends ScriptableObject {
|
|||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue