[Pkg-mono-svn-commits] rev 380 - mono-vhostmanager/src

Pablo Fischer pabl0-guest@quantz.debian.org
Sun, 29 Feb 2004 06:48:54 +0100


Author: pabl0-guest
Date: 2004-02-29 06:48:51 +0100 (Sun, 29 Feb 2004)
New Revision: 380

Modified:
   mono-vhostmanager/src/Manager.cs
Log:
* Manager.cs
 + Added more debug information. Like, show the user in which file the virtualhost already exists.



Modified: mono-vhostmanager/src/Manager.cs
===================================================================
--- mono-vhostmanager/src/Manager.cs	2004-02-28 12:12:33 UTC (rev 379)
+++ mono-vhostmanager/src/Manager.cs	2004-02-29 05:48:51 UTC (rev 380)
@@ -245,7 +245,7 @@
 	  Save();
 	}
 	else {
-	  Console.WriteLine("[VHE] The VirtualHost already exists");
+	  Console.WriteLine("[VHE] The VirtualHost already exists in {0}", config_file);
 	  System.Environment.Exit(0);
 	}
       }
@@ -260,7 +260,7 @@
 	Save();
       }
       else {
-	Console.WriteLine("[VHN] The VirtualHost does not exists");
+	Console.WriteLine("[VHN] The VirtualHost does not exists in {0}", config_file);
 	System.Environment.Exit(0);
       }
       break;