Skip to content

Commit

Permalink
add console logging, speed up start of jack
Browse files Browse the repository at this point in the history
  • Loading branch information
gisogrimm committed Oct 11, 2024
1 parent 2f70d36 commit 5924d81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libov
1 change: 1 addition & 0 deletions src/ov-client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ void log_seq_error(stage_device_id_t cid, sequence_t seq_ex, sequence_t seq_rec,

int main(int argc, char** argv)
{
TASCAR::console_log_show(true);
signal(SIGABRT, &sighandler);
signal(SIGTERM, &sighandler);
signal(SIGINT, &sighandler);
Expand Down
1 change: 1 addition & 0 deletions src/ovbox.cc
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ void ovboxgui_t::update_display() {}

int main(int argc, char** argv)
{
TASCAR::console_log_show(true);
signal(SIGABRT, &sighandler);
signal(SIGTERM, &sighandler);
signal(SIGINT, &sighandler);
Expand Down
1 change: 1 addition & 0 deletions src/ovbox_cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ void log_seq_error(stage_device_id_t cid, sequence_t seq_ex, sequence_t seq_rec,

int main(int argc, char** argv)
{
TASCAR::console_log_show(true);
signal(SIGABRT, &sighandler);
signal(SIGTERM, &sighandler);
signal(SIGINT, &sighandler);
Expand Down

0 comments on commit 5924d81

Please sign in to comment.