Skip to content

Commit 4a9578c

Browse files
committedJun 27, 2024·
distinguish JFX logs
1 parent 76a4f3c commit 4a9578c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎modules/javafx.graphics/src/main/native-glass/gtk/screencast_pipewire.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ struct ScreenSpace {
6363
int allocated;
6464
};
6565

66-
#define DEBUG_SCREENCAST(FORMAT, ...) debug_screencast("%s:%i " FORMAT, \
66+
#define DEBUG_SCREENCAST(FORMAT, ...) debug_screencast("JFX: %s:%i " FORMAT, \
6767
__func__, __LINE__, __VA_ARGS__);
6868

6969
#define DEBUG_SCREEN(SCREEN) \
@@ -82,7 +82,7 @@ struct ScreenSpace {
8282
(SCREEN)->id, (SCREEN)->bounds.x, (SCREEN)->bounds.y, \
8383
(SCREEN)->bounds.width, (SCREEN)->bounds.height, __VA_ARGS__);
8484

85-
#define ERR(MSG) fprintf(stderr, "%s:%i " MSG, __func__, __LINE__);
85+
#define ERR(MSG) fprintf(stderr, "JFX: %s:%i " MSG, __func__, __LINE__);
8686
#define ERR_HANDLE(ERROR) errHandle((ERROR), __func__, __LINE__);
8787

8888
struct PwLoopData {

0 commit comments

Comments
 (0)
Please sign in to comment.