Changeset 8013c0c in nscp for modules/NSClientServer/handler_impl.hpp
- Timestamp:
- 01/23/12 07:41:06 (16 months ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2
- Children:
- 6a30f44
- Parents:
- 28f6a64
- File:
-
- 1 edited
-
modules/NSClientServer/handler_impl.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
modules/NSClientServer/handler_impl.hpp
r40fca56 r8013c0c 31 31 32 32 void log_debug(std::string file, int line, std::wstring msg) { 33 GET_CORE()->log(NSCAPI::debug, file, line, msg); 33 if (GET_CORE()->should_log(NSCAPI::log_level::debug)) { 34 GET_CORE()->log(NSCAPI::log_level::debug, file, line, msg); 35 } 34 36 } 35 37 void log_error(std::string file, int line, std::wstring msg) { 36 GET_CORE()->log(NSCAPI::error, file, line, msg); 38 if (GET_CORE()->should_log(NSCAPI::log_level::error)) { 39 GET_CORE()->log(NSCAPI::log_level::error, file, line, msg); 40 } 37 41 } 38 42
Note: See TracChangeset
for help on using the changeset viewer.








