mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-29 10:00:26 +01:00
new function winDebug which logs messages with verbosity level 3
This commit is contained in:
parent
4ee077c887
commit
162a45d3aa
2 changed files with 10 additions and 0 deletions
|
|
@ -92,3 +92,12 @@ winErrorFVerb (int verb, const char *format, ...)
|
|||
LogVMessageVerb(X_NONE, verb, format, ap);
|
||||
va_end (ap);
|
||||
}
|
||||
|
||||
void
|
||||
winDebug (const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start (ap, format);
|
||||
LogVMessageVerb(X_NONE, 3, format, ap);
|
||||
va_end (ap);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ void winDrvMsgVerb (int scrnIndex,
|
|||
void winDrvMsg (int scrnIndex, MessageType type, const char *format, ...);
|
||||
void winMsgVerb (MessageType type, int verb, const char *format, ...);
|
||||
void winMsg (MessageType type, const char *format, ...);
|
||||
void winDebug (const char *format, ...);
|
||||
|
||||
void winErrorFVerb (int verb, const char *format, ...);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue