Changeset 40fca56 in nscp for modules/NSCAServer


Ignore:
Timestamp:
11/09/11 21:00:49 (19 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
b24c97f
Parents:
0d9eed6
Message:
  • Added initial SMTPClient to allow sending messages via SMTP. Still requires template support and configuration options (mainly PoC right now).
  • Fixed unicode log issue (still not sure message format is correct)
  • Renamed Message to log in internal wrapper API
  • Fixed issue in settings old (regarding readin new keys, not 100% supported yet)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/NSCAServer/handler_impl.hpp

    r9b9be81 r40fca56  
    5454 
    5555  void log_debug(std::string file, int line, std::wstring msg) { 
    56     GET_CORE()->Message(NSCAPI::debug, file, line, msg); 
     56    GET_CORE()->log(NSCAPI::debug, file, line, msg); 
    5757  } 
    5858  void log_error(std::string file, int line, std::wstring msg) { 
    59     GET_CORE()->Message(NSCAPI::error, file, line, msg); 
     59    GET_CORE()->log(NSCAPI::error, file, line, msg); 
    6060  } 
    6161}; 
Note: See TracChangeset for help on using the changeset viewer.