Home | History | Annotate | Download | only in base

Lines Matching defs:VLOG

52 //   VLOG(1) << "I'm printed when you run the program with --v=1 or more";
53 // VLOG(2) << "I'm printed when you run the program with --v=2 or more";
59 // a. VLOG(2) and lower messages to be printed from profile.{h,cc}
60 // b. VLOG(1) and lower messages to be printed from icon_loader.{h,cc}
61 // c. VLOG(3) and lower messages to be printed from files prefixed with
63 // d. VLOG(4) and lower messages to be printed from files under a
65 // e. VLOG(0) and lower messages to be printed from elsewhere
78 // // that can't be accomplished with just VLOG(2) << ...;
120 // Note that log messages for VLOG(x) are logged at level -x, so setting
127 // Gets the VLOG default verbosity level.
192 // The VLOG macros log with negative verbosities.
196 #define VLOG(verbose_level) \
203 // TODO(akalin): Add more VLOG variants, e.g. VPLOG.