diff mde/input/Config.d @ 68:3a737e06dc50

Unittests: fixes and changes. Plus some doc changes.
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 04 Jul 2008 18:49:16 +0100
parents 108d123238c0
children 7fc0a8295c83
line wrap: on
line diff
--- a/mde/input/Config.d	Thu Jul 03 12:40:31 2008 +0100
+++ b/mde/input/Config.d	Fri Jul 04 18:49:16 2008 +0100
@@ -154,8 +154,9 @@
             if (file_configs)	file.read(file_configs);	// restrict to this set IF a restriction was given
             else		file.read();			// otherwise read all
         }
-        catch (MT.MTException) {
-            logger.fatal ("Unable to load configs from: " ~ filename);
+        catch (MT.MTException e) {
+            logger.fatal ("Unable to load configs from: " ~ filename ~ ":");
+            logger.fatal (e.msg);
             throw new ConfigLoadException;
         }