mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
log: make line==0 suppress the file/line/func output
Disable file/line/func output for pod debug
This commit is contained in:
parent
79fd4c941f
commit
6203fb967c
2 changed files with 2 additions and 2 deletions
|
|
@ -106,7 +106,7 @@ impl_log_logv(void *object,
|
|||
now.tv_sec & 0x1FFFFFFF, now.tv_nsec / 1000);
|
||||
|
||||
}
|
||||
if (impl->line) {
|
||||
if (impl->line && line != 0) {
|
||||
size += snprintf(p + size, len - size, "[%s:%i %s()]",
|
||||
strrchr(file, '/') + 1, line, func);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue