diff --git a/examples/app.bundle.js b/examples/app.bundle.js index 0781a15..673604a 100644 --- a/examples/app.bundle.js +++ b/examples/app.bundle.js @@ -20,7 +20,7 @@ RocketLauncher = function (apps) { document.addEventListener('DOMContentLoaded', function () { if (!apps) { - console.error('Binder: No applications found!'); + console.error('RocketLauncher: No applications found!'); return; } @@ -31,7 +31,7 @@ RocketLauncher = function (apps) { opts = {}; if (!(app_name in apps)) { - console.error('Module ' + app_name + ' not found.'); + console.error('RocketLauncher: Application ' + app_name + ' not found.'); return; } diff --git a/src/main.js b/src/main.js index 0e3177c..557dc13 100644 --- a/src/main.js +++ b/src/main.js @@ -4,7 +4,7 @@ RocketLauncher = function (apps) { document.addEventListener('DOMContentLoaded', function () { if (!apps) { - console.error('Binder: No applications found!'); + console.error('RocketLauncher: No applications found!'); return; } @@ -15,7 +15,7 @@ RocketLauncher = function (apps) { opts = {}; if (!(app_name in apps)) { - console.error('Module ' + app_name + ' not found.'); + console.error('RocketLauncher: Application ' + app_name + ' not found.'); return; }