diff options
| author | dec05eba <dec05eba@protonmail.com> | 2026-08-02 02:03:21 +0200 |
|---|---|---|
| committer | dec05eba <dec05eba@protonmail.com> | 2026-08-02 20:05:13 +0200 |
| commit | 8fc8aaa7993d071955cb56dfda70555d953da916 (patch) | |
| tree | 873855cd1b469a82d6b87c45533a86bb96768f8d /src | |
| parent | f547fcc354671c672fffb20092e72d231e6ed1e4 (diff) | |
Document the ipc option next to the signals in the readme
The remote control section is now split into a signals part and an ipc
part with gsr-cli examples, and it points at the gsr-cli man page and the
IPC section of the gpu-screen-recorder man page.
Diffstat (limited to 'src')
| -rw-r--r-- | src/recorder/recorder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recorder/recorder.c b/src/recorder/recorder.c index 6f9ea12..4426ac5 100644 --- a/src/recorder/recorder.c +++ b/src/recorder/recorder.c @@ -511,7 +511,7 @@ static void recorder_update_fps_counters(gsr_recorder *self) { const double elapsed = time_now - self->fps_start_time; if (elapsed >= 1.0) { if(self->settings.verbose) { - fprintf(stderr, "update fps: %d, damage fps: %d\n", self->fps_counter, self->damage_fps_counter); + gsr_log(GSR_LOG_LEVEL_INFO, "update fps: %d, damage fps: %d", self->fps_counter, self->damage_fps_counter); } self->fps_start_time = time_now; self->fps_counter = 0; |
