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