Skip to content

Commit

Permalink
FLUID-5906: Removed console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
amb26 committed May 16, 2016
1 parent 235a072 commit 3c67d2d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/module/module.js
Expand Up @@ -126,12 +126,10 @@ fluid.module.refToModuleName = function (ref) {
fluid.require = function (ref, foreignRequire, namespace) {
var moduleTerm = fluid.module.refToModuleName(ref);
if (moduleTerm && !foreignRequire) {
console.log("Got term " + moduleTerm + " from ref " + ref);
var entry = fluid.module.modules[moduleTerm];
if (!entry) {
var callerInfo = fluid.getCallerInfo(2);
var callerPath = callerInfo.path;
console.log("CALLER WAS ", callerInfo);
var resolvedTerm = fluid.module.resolveSync(moduleTerm, callerPath);
if (!resolvedTerm) {
fluid.fail("Module " + moduleTerm + " has not been loaded and could not be loaded from caller's path " + callerPath);
Expand Down

0 comments on commit 3c67d2d

Please sign in to comment.