提交 2f2691af 编写于 作者: W wangguibao

Fix glog error

Change-Id: I1348911c5771d70aac8ed6484f5cd3808a80b6aa
上级 f9bc7ef4
...@@ -32,24 +32,26 @@ ...@@ -32,24 +32,26 @@
#include "gflags/gflags.h" #include "gflags/gflags.h"
#ifdef BCLOUD #ifdef BCLOUD
#include "bthread.h"
#include "baidu/rpc/channel.h" #include "baidu/rpc/channel.h"
#include "baidu/rpc/policy/giano_authenticator.h" #include "baidu/rpc/policy/giano_authenticator.h"
#include "baidu/rpc/server.h" #include "baidu/rpc/server.h"
#include "base/logging.h"
#include "base/comlog_sink.h" #include "base/comlog_sink.h"
#include "base/logging.h"
#include "base/object_pool.h" #include "base/object_pool.h"
#include "base/time.h" #include "base/time.h"
#include "bthread.h" // NOLINT
#else #else
#include "bthread/bthread.h"
#include "brpc/channel.h" #include "brpc/channel.h"
#include "brpc/policy/giano_authenticator.h" #include "brpc/policy/giano_authenticator.h"
#include "brpc/server.h" #include "brpc/server.h"
#include "bthread/bthread.h"
#include "butil/logging.h" #include "butil/logging.h"
#include "butil/object_pool.h" #include "butil/object_pool.h"
#include "butil/time.h" #include "butil/time.h"
#endif #endif
#include "glog/raw_logging.h"
#include "configure/include/configure_parser.h" #include "configure/include/configure_parser.h"
#include "configure/server_configure.pb.h" #include "configure/server_configure.pb.h"
......
...@@ -62,7 +62,7 @@ class OpRepository { ...@@ -62,7 +62,7 @@ class OpRepository {
template <typename OP_TYPE> template <typename OP_TYPE>
void regist_op(std::string op_type) { void regist_op(std::string op_type) {
_repository[op_type] = &OpFactory<OP_TYPE>::instance(); _repository[op_type] = &OpFactory<OP_TYPE>::instance();
LOG(INFO) << "Succ regist op: " << op_type << "!"; RAW_LOG_INFO("Succ regist op: %s", op_type.c_str());
} }
Op* get_op(std::string op_type); Op* get_op(std::string op_type);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册