We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61adc84 commit 6224ed6Copy full SHA for 6224ed6
code/common/src/logging.h
@@ -78,6 +78,7 @@ extern uint8_t g_log_buf_cur;
78
if(g_interactive) { \
79
if (log_id[log_id_].enable) { \
80
wprintw(log_win, "%s "fmt_, log_format_timestamp(), ##__VA_ARGS__); \
81
+ wrefresh(log_win); \
82
} \
83
} else { \
84
@@ -102,7 +103,7 @@ extern uint8_t g_log_buf_cur;
102
103
104
105
wprintw(log_win, "%s "fmt_, log_format_timestamp()); \
- wrefresh(log_win); \
106
107
108
109
0 commit comments