forked from pool/fcitx
24 lines
537 B
Diff
24 lines
537 B
Diff
|
---
|
||
|
src/lib/fcitx-utils/log.c | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
--- a/src/lib/fcitx-utils/log.c
|
||
|
+++ b/src/lib/fcitx-utils/log.c
|
||
|
@@ -23,6 +23,7 @@
|
||
|
#include <string.h>
|
||
|
#include <stdio.h>
|
||
|
#include <wchar.h>
|
||
|
+#include <libgen.h>
|
||
|
|
||
|
#include "config.h"
|
||
|
#include "fcitx/fcitx.h"
|
||
|
@@ -136,7 +137,7 @@ FcitxLogFunc(FcitxLogLevel e, const char
|
||
|
{
|
||
|
va_list ap;
|
||
|
va_start(ap, fmt);
|
||
|
- FcitxLogFuncV(e, filename, line, fmt, ap);
|
||
|
+ FcitxLogFuncV(e, basename(filename), line, fmt, ap);
|
||
|
va_end(ap);
|
||
|
}
|
||
|
|