设置环境变量: export GLOG_v=4
GLOG provide LOG interface to output log, ref link
GLOG_minloglevel (int, default=0, which is INFO)
Log messages at or above this level. Again, the numbers of severity levels INFO, WARNING, ERROR, and FATAL are 0, 1, 2, and 3, respectively.
The problem is that GLOG LOG interface does not provide DEBUG level message, so we use glog’s GLOG_v wrapping an new interface MS_LOG, the severity levels are 0-DEBUG, 1-INFO, 2-WARNING, 3-ERROR. If you set GLOG_v=1, you can see message of INFO and above, i.e. INFO, WARNING and ERROR.