]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Log.hh
simplified win32 installer build script
[chaz/yoink] / src / Moof / Log.hh
index c7ee50726b68e35ea914b81afa9c95fc4c347687..96585a1d5dc0041c7deea6b4027dd69eff9eb056 100644 (file)
@@ -64,12 +64,10 @@ public:
 
        enum Level
        {
-               NONE            = -1,           ///< Disable all logging.
-               ERRORR          =  1,           ///< Log only errors.
-               WARNING         =  2,           ///< Log warnings and errors.
-               SCRIPT          =  3,           ///< Log messages from Lua, too.
-               INFO            =  4,           ///< Log info, warnings, errors.
-               DEBUGG          =  5,           ///< Log all messages.
+               NONE            = 0,            ///< Disable all logging.
+               ERRORR          = 1,            ///< Log only errors.
+               WARNING         = 2,            ///< Log warnings and errors.
+               INFO            = 3,            ///< Log everything.
        };
 
        static void setLevel(Level level);
@@ -104,7 +102,6 @@ extern std::ostream&        nullLog;
 extern Log logError;
 extern Log logWarning;
 extern Log logInfo;
-extern Log logDebug;
 
 
 template <typename T>
@@ -116,7 +113,7 @@ inline std::ostream& operator << (Log& logObj, const T& item)
 
 
 class Script;
-void importLogPrintFunction(Script& script);
+void importLogFunctions(Script& script);
 
 
 } // namespace Mf
This page took 0.026625 seconds and 4 git commands to generate.