You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
260 B
15 lines
260 B
#pragma once
|
|
|
|
#include "mobvoi/base/flags.h"
|
|
#include "mobvoi/base/log_lite.h"
|
|
|
|
DECLARE_int32(v);
|
|
|
|
namespace mobvoi {
|
|
|
|
#define VLOG(level) if ((level) <= FLAGS_v) LOG(INFO)
|
|
|
|
#define VLOG_IS_ON(verboselevel) (FLAGS_v >= (verboselevel))
|
|
|
|
} // namespace mobvoi
|
|
|
|
|