diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-05 07:38:14 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-05 07:38:14 -0400 |
| commit | 897d315359718712a8e6b160c279f563f7436367 (patch) | |
| tree | ac3f68378fd7fa117ff631af5d833009a428afd1 /src/settingsutilities.h | |
| parent | 1dc39621998457ab09765520f6cce4e266eaa8db (diff) | |
fixes for VS preview: missing namespace, missing setting() with two parameters
Diffstat (limited to 'src/settingsutilities.h')
| -rw-r--r-- | src/settingsutilities.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<T>; 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)); } |
