From 2cf5f2dfb9e1ee375248753d2a9ea5e0212e3820 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 24 Feb 2021 21:07:01 +0100 Subject: [PATCH] Fix missing timestamps since yabridge 3.0.0 --- CHANGELOG.md | 2 ++ src/common/logging/common.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0437e825..728a55ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). - Added support for a new vendor-specific VST2.4 extension **REAPER** started using recently where it passes a non-pointer value to a pointer parameter. This would cause segfaults with some plugins. +- Fixed a regression from yabridge 3.0.0 where log output would no longer + include timestamps. ## [3.0.0] - 2021-02-14 diff --git a/src/common/logging/common.h b/src/common/logging/common.h index 4bcc0acd..2b9e8888 100644 --- a/src/common/logging/common.h +++ b/src/common/logging/common.h @@ -106,7 +106,7 @@ class Logger { Logger(std::shared_ptr stream, Verbosity verbosity_level, std::string prefix = "", - bool prefix_timestamp = false); + bool prefix_timestamp = true); /** * Create a logger instance based on the set environment variables. See the