From 897d315359718712a8e6b160c279f563f7436367 Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Sat, 5 Oct 2019 07:38:14 -0400 Subject: fixes for VS preview: missing namespace, missing setting() with two parameters --- src/settingsutilities.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/settingsutilities.h') diff --git a/src/settingsutilities.h b/src/settingsutilities.h index a6737144..ac6aeb29 100644 --- a/src/settingsutilities.h +++ b/src/settingsutilities.h @@ -39,11 +39,11 @@ void logChange( using VC = ValueConverter; if (oldValue) { - log::debug( + MOBase::log::debug( "setting '{}' changed from '{}' to '{}'", displayName, VC::convert(*oldValue), VC::convert(newValue)); } else { - log::debug( + MOBase::log::debug( "setting '{}' set to '{}'", displayName, VC::convert(newValue)); } -- cgit v1.3.1