glog.conf 437 B

123456789101112131415
  1. # if true, only log to stdout
  2. --logtostdout=true
  3. --logtostderr=false
  4. --alsologtostderr=false
  5. # `INFO``, ``WARNING``, ``ERROR``, and ``FATAL`` are 0, 1, 2, and 3
  6. --minloglevel=0
  7. --log_dir=/var/lib/milvus/logs/
  8. # using vlog to implement debug and trace log
  9. # if set vmodule to 5, open debug level
  10. # if set vmodule to 6, open trace level
  11. # default 4, not open debug and trace
  12. --v=4
  13. # MB
  14. --max_log_size=200
  15. --stop_logging_if_full_disk=true