From 7db6d31bf036868a1e443264d5526f3983fa2234 Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Wed, 25 Mar 2015 13:41:34 +0800 Subject: [PATCH] MDL-49262 bootstrapbase: Add log to bootstrapbase init --- theme/bootstrapbase/javascript/moodlebootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/bootstrapbase/javascript/moodlebootstrap.js b/theme/bootstrapbase/javascript/moodlebootstrap.js index 2502e13b8e4..d0d8356cb23 100644 --- a/theme/bootstrapbase/javascript/moodlebootstrap.js +++ b/theme/bootstrapbase/javascript/moodlebootstrap.js @@ -1,6 +1,6 @@ require(['core/first'], function() { - require(['theme_bootstrapbase/bootstrap', 'core/log'], function(bootstrap) { + require(['theme_bootstrapbase/bootstrap', 'core/log'], function(bootstrap, log) { log.debug('Bootstrap initialised'); }); });