fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wlxml: metadata wip - as extension
[fnpeditor.git]
/
src
/
fnpjs
/
runner.js
diff --git
a/src/fnpjs/runner.js
b/src/fnpjs/runner.js
index
7797e24
..
2f00170
100644
(file)
--- a/
src/fnpjs/runner.js
+++ b/
src/fnpjs/runner.js
@@
-1,4
+1,4
@@
-define(['libs/jquery', 'libs/underscore'
], function($, _
) {
+define(['libs/jquery', 'libs/underscore'
, 'fnpjs/logging/logging'], function($, _, logging
) {
'use strict';
'use strict';
@@
-77,6
+77,12
@@
var Runner = function(app, modules) {
config = _.extend({
rootSelector: 'body'
}, _config);
config = _.extend({
rootSelector: 'body'
}, _config);
+
+
+ if(config.logging) {
+ logging.setConfig(config.logging);
+ }
+
app.initModules.forEach(function(moduleName) {
getModuleInstance(moduleName).start();
});
app.initModules.forEach(function(moduleName) {
getModuleInstance(moduleName).start();
});