Index: trunk/FACT++/src/Main.h
===================================================================
--- trunk/FACT++/src/Main.h	(revision 15174)
+++ trunk/FACT++/src/Main.h	(revision 15177)
@@ -31,4 +31,5 @@
             ("host",       var<string>(),                  "Address with which the Dim nameserver can connect to this host (overwites DIM_HOST_NODE environment variable)")
             ("log,l",      var<string>(n), "Name of local log-file")
+            ("no-log",     po_switch(),    "Supress log-file")
             ("append-log", po_bool(),      "Append log information to local log-file")
             ("null",       po_switch(),    "Suppresses almost all console output - including errors (only available without --console option)")
@@ -106,5 +107,5 @@
         }
 
-        if (conf.Has("log"))
+        if (conf.Has("log") && !conf.Get<bool>("no-log"))
             if (!wout.OpenLogFile(conf.Get<string>("log"), conf.Get<bool>("append-log")))
                 win << kRed << "ERROR - Couldn't open log-file " << conf.Get<string>("log") << ": " << strerror(errno) << endl;
