diff options
author | David Robillard <d@drobilla.net> | 2024-11-17 19:02:01 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 19:07:35 -0500 |
commit | f80653bc457aef835cd49ad68a5b7fa53db262f9 (patch) | |
tree | ae35cea69d3ce5137223b5d5e0b63ec5a207bdb8 /src/log.h | |
parent | 30ec5250ca9963ecbab37a6103fdbd2ea0fcdc90 (diff) | |
download | jalv-f80653bc457aef835cd49ad68a5b7fa53db262f9.tar.gz jalv-f80653bc457aef835cd49ad68a5b7fa53db262f9.tar.bz2 jalv-f80653bc457aef835cd49ad68a5b7fa53db262f9.zip |
Move control port printing to console client
This functionality was spammed across the codebase and kind of half-implemented
for graphical clients, but only really makes sense for the console one. So,
isolate it there.
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -5,8 +5,6 @@ #define JALV_LOG_H #include "attributes.h" -#include "port.h" -#include "types.h" #include "urids.h" #include "lv2/log/log.h" @@ -36,10 +34,6 @@ typedef struct { bool tracing; } JalvLog; -/// Print a control value to stderr, like "sym = 1.234" -void -jalv_print_control(const Jalv* jalv, const JalvPort* port, float value); - /// Print a log message to stderr with a GCC-like prefix and color JALV_LOG_FUNC(2, 3) int |