revert accidental debugging commit

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-05-05 10:49:03 +02:00
parent 839ced08f5
commit dcf937195c

View file

@ -189,7 +189,7 @@ grub_real_dprintf (const char *file, const int line, const char *condition,
const char *debug = grub_env_get ("debug");
if (! debug)
debug = "usb,ohci";
return;
if (grub_strword (debug, "all") || grub_strword (debug, condition))
{
@ -197,7 +197,6 @@ grub_real_dprintf (const char *file, const int line, const char *condition,
va_start (args, fmt);
grub_vprintf (fmt, args);
va_end (args);
grub_refresh ();
}
}