ICP  1
instapi_utils.cpp
Go to the documentation of this file.
1 #include "stdafx.h"
2 #include "instapi_utils.h"
3 
4 
5 Poco::Logger& createLogger(const std::string& name)
6 {
7  Poco::Logger& logger = Poco::Logger::get("instapi");
8  Poco::Logger& logger2 = Poco::Logger::get(name);
9 // logger.setChannel(
10  return logger;
11 }
12 
13 
14 
15 class DBChannel : public Poco::Channel
16 {
17  // void close();
18  void log(const Poco::Message& msg)
19  {
20  ULONG session_id = Poco::NumberParser::parse(msg["session_id"]);
21  }
22  //void open();
23 };
24 
25 Poco::SingletonHolder<InstAPILib> inst_api;
Poco::Logger & createLogger(const std::string &name)
Poco::SingletonHolder< InstAPILib > inst_api
void log(const Poco::Message &msg)