1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 22:21:16 +02:00

Introduce msg_*dbg2

Corresponding to flashrom svn r1404.

Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
Stefan Tauner
2011-08-04 17:40:25 +00:00
parent af882e7e84
commit eebeb53d65
3 changed files with 10 additions and 3 deletions

View File

@ -33,6 +33,9 @@ int print(int type, const char *fmt, ...)
output_type = stderr;
break;
case MSG_BARF:
if (verbose < 3)
return 0;
case MSG_DEBUG2:
if (verbose < 2)
return 0;
case MSG_DEBUG: