Skip to content

Commit 4373195

Browse files
Changed dump of the display refresh time to the single log line
1 parent e4e00fe commit 4373195

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Firmware/graphics/gs_lvgl_service.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ class LvglGraphicsService::GSLvglServiceImpl
9191

9292
auto monitorCallback =
9393
cbc::obtain_connector([](lv_disp_drv_t* disp_drv, uint32_t time, uint32_t px) {
94-
LOG_DEBUG(fmt::format("Refresh time: {}", time));
95-
LOG_DEBUG(fmt::format("Refreshed pixels: {}", px));
94+
LOG_DEBUG(fmt::format("Refresh time: {}, pixels: {}", time, px));
9695
});
9796

9897
m_glDisplayDriver.monitor_cb = monitorCallback;

0 commit comments

Comments
 (0)