LogUtil.cpp 656 字节
Newer Older
G
groot 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
////////////////////////////////////////////////////////////////////////////////
// Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
// Unauthorized copying of this file, via any medium is strictly prohibited.
// Proprietary and confidential.
////////////////////////////////////////////////////////////////////////////////
#include "LogUtil.h"

#include <easylogging++.h>

namespace zilliz {
namespace vecwise {
namespace server {

int32_t InitLog() {
    el::Configurations conf("../../conf/vecwise_engine_log.conf");
    el::Loggers::reconfigureAllLoggers(conf);

    return 0;
}


}   // server
}   // vecwise
}   // zilliz