fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
smartxml: really minor refactoring
[fnpeditor.git]
/
src
/
fnpjs
/
logging
/
logging.test.js
diff --git
a/src/fnpjs/logging/logging.test.js
b/src/fnpjs/logging/logging.test.js
index
5876f5a
..
6baf049
100644
(file)
--- a/
src/fnpjs/logging/logging.test.js
+++ b/
src/fnpjs/logging/logging.test.js
@@
-31,8
+31,8
@@
var log = {
};
// Loggin handler that just writes to the global logger object
-var testLoggingHandler = function(
msg
) {
- log.append(
msg
);
+var testLoggingHandler = function(
record
) {
+ log.append(
record.message
);
};
describe('Logging', function() {