summaryrefslogtreecommitdiff
path: root/osframework/source/SexyAppFramework/SexyLog.h
diff options
context:
space:
mode:
Diffstat (limited to 'osframework/source/SexyAppFramework/SexyLog.h')
-rw-r--r--osframework/source/SexyAppFramework/SexyLog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/osframework/source/SexyAppFramework/SexyLog.h b/osframework/source/SexyAppFramework/SexyLog.h
index 4e7aca2..cb7fe1b 100644
--- a/osframework/source/SexyAppFramework/SexyLog.h
+++ b/osframework/source/SexyAppFramework/SexyLog.h
@@ -6,8 +6,8 @@
namespace Sexy {
enum LogLevel {
- LOG_NOISE = -1,
- LOG_DEBUG,
+ LOG_VERBOSE = -1,
+ LOG_DEBUG = 0,
LOG_INFO,
LOG_WARN,
LOG_ERROR,
@@ -22,9 +22,9 @@ namespace Sexy {
void log(LogLevel lvl, const std::string& tag, const std::string& s);
void log(LogLevel lvl, const std::string& s);
- void logn(const std::string& tag, const std::string& s);
- void logtfn(const std::string& tag, const char* fmt, ...);
- void logfn(const char* fmt, ...);
+ void logv(const std::string& tag, const std::string& s);
+ void logtfv(const std::string& tag, const char* fmt, ...);
+ void logfv(const char* fmt, ...);
void logd(const std::string& tag, const std::string& s);
void logtfd(const std::string& tag, const char* fmt, ...);