Browse Source

Add debugging info in clean command

Leo 9 years ago
parent
commit
fb5f6e085a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/clean_command.ml

+ 2 - 1
src/clean_command.ml

@@ -37,5 +37,6 @@
 open Core.Std;;
 open Core.Std;;
 
 
 let run ~rc () =
 let run ~rc () =
-  File_com.write rc
+  File_com.write rc;
+  Messages.debug "Configuration file cleaned up";
 ;;
 ;;