Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change debug msg
  • Loading branch information
tmm1 committed Feb 12, 2015
commit c9721f4f4c7294dd0f07043846770c59bdbbae1f
4 changes: 2 additions & 2 deletions load.c
Original file line number Diff line number Diff line change
Expand Up @@ -995,8 +995,8 @@ rb_require_safe(VALUE fname, int safe)
}
} else {
found = search_required(ipath, &path, safe);
/*if (found && RSTRING_PTR(ipath)[0] != '/')
fprintf(stderr, "SEARCHING '%s'\n", RSTRING_PTR(ipath));*/
/*if (found && path)
fprintf(stderr, "SEARCHING '%s' found '%s'\n", RSTRING_PTR(ipath), RSTRING_PTR(path));*/
}
if (vm->require_cache.write && RSTRING_PTR(ipath)[0] != '/' && (!found || (found && path))) {
/*fprintf(stderr, "WRITING '%s' => '%s'\n", RSTRING_PTR(ipath), found ? RSTRING_PTR(path) : "");*/
Expand Down