Home | History | Annotate | Download | only in base

Lines Matching defs:VLOG

81 //   VLOG(1) << "I'm printed when you run the program with --v=1 or more";
82 // VLOG(2) << "I'm printed when you run the program with --v=2 or more";
88 // a. VLOG(2) and lower messages to be printed from profile.{h,cc}
89 // b. VLOG(1) and lower messages to be printed from icon_loader.{h,cc}
90 // c. VLOG(3) and lower messages to be printed from files prefixed with
92 // d. VLOG(4) and lower messages to be printed from files under a
94 // e. VLOG(0) and lower messages to be printed from elsewhere
107 // // that can't be accomplished with just VLOG(2) << ...;
265 // Note that log messages for VLOG(x) are logged at level -x, so setting
275 // Gets the VLOG default verbosity level.
278 // Gets the current vlog level for the given file (usually taken from
408 // The VLOG macros log with negative verbosities.
412 #define VLOG(verbose_level) \
436 // TODO(akalin): Add more VLOG variants, e.g. VPLOG.