summaryrefslogtreecommitdiff
path: root/src/mod_db.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mod_db.sml')
-rw-r--r--src/mod_db.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mod_db.sml b/src/mod_db.sml
index 2e2b9c6c..de428570 100644
--- a/src/mod_db.sml
+++ b/src/mod_db.sml
@@ -121,7 +121,8 @@ fun insert (d, tm, hasErrors) =
fun doMod (n', deps) =
case IM.find (!byId, n') of
NONE =>
- (TextIO.print ("MISSED_DEP: " ^ Int.toString n' ^"\n");
+ (
+ (* TextIO.print ("MISSED_DEP: " ^ Int.toString n' ^"\n"); *)
deps)
(* raise Fail ("ModDb: Trying to make dep tree but couldn't find module " ^ Int.toString n') *)
(* I feel like this should throw, but the dependency searching algorithm *)