took out noisesome logging
[feisty_meow.git] / scripts / files / safedel.pl
index b34e852feb770f226f41c1f5ce55bf0f776b3477..6b8ed29a3419cddab46db8dec93e8b58102cfceb 100644 (file)
@@ -24,7 +24,7 @@ require "filename_helper.pl";
 require "inc_num.pl";
 require "zap_the_dir.pl";
 
-use Env qw(TMP OS SHELL_DEBUG);
+use Env qw(TMP OS DEBUG_FEISTY_MEOW);
 
 #hmmm: need a usage statement.
 
@@ -63,7 +63,8 @@ exit 0;
 sub safedel {
   # get the list of files and directories to whack.
   local(@to_delete) = &glob_list(@_);
-#  print "final list of whackees: @to_delete\n";
+#hmmm: make this into a debug option. 
+#print "list of whackees: @to_delete\n";
 
   # we store the deleted files in a directory under the temporary directory.
   if (! -d $TMP) { 
@@ -132,7 +133,7 @@ sub safedel {
     }
   }
   if (@deleted) {
-    if ($SHELL_DEBUG != "") {
+    if ($DEBUG_FEISTY_MEOW != "") {
       print "Trashed [@deleted].\n";
     }
     open(REPORT, ">>$TMP/zz_safedel_report.txt");
@@ -147,7 +148,11 @@ sub safedel {
     print REPORT $printable_date . " -- from [@deleted]\n";
     close(REPORT);
   } else {
-    print "No files were deleted.\n";
+#hmmm: oh good, and we should always bug people about nothing having been done?
+#      this is especially tiresome when our own scripts cause safedel to be invoked,
+#      since then they are automatically noisy and blathery.
+#hmmm: make this into a debug option. 
+#    print "No files were deleted.\n";
   }
 }