define([ "require", "dojo/_base/array", "dojo/_base/declare", "dojo/_base/lang", "dojo/string", "dojo/when", "obnogen/service/com/obno/core/DebugService" ], function(require, array, declare, lang, string, when, DebugSvc) { var module = declare("obno.core.Debug", null, { debug: function(msg){ var svc = new DebugSvc(); svc.debug(msg); } }); return module; });