From 4d5b2fcb12c7f08f0f971c0873e554d8cb303740 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 23 May 2021 19:45:29 +0200 Subject: [PATCH] Add missing quotes in IEditController::getParamValueByString() log message --- src/common/logging/vst3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/logging/vst3.cpp b/src/common/logging/vst3.cpp index d61e6d12..4d3d4551 100644 --- a/src/common/logging/vst3.cpp +++ b/src/common/logging/vst3.cpp @@ -269,8 +269,8 @@ bool Vst3Logger::log_request( std::string param_title = VST3::StringConvert::convert(request.string); message << request.instance_id << ": IEditController::getParamValueByString(id = " - << request.id << ", string = " << param_title - << ", &valueNormalized)"; + << request.id << ", string = \"" << param_title + << "\", &valueNormalized)"; }); }