diff --git a/src/dusk/config.cpp b/src/dusk/config.cpp index e67365b0d2..fc7a82961f 100644 --- a/src/dusk/config.cpp +++ b/src/dusk/config.cpp @@ -58,6 +58,8 @@ template void ConfigImpl::loadFromJson(ConfigVar& cVar, const json& jsonValue) { if constexpr (std::is_enum_v) { if (jsonValue.is_boolean()) { + DuskConfigLog.error("Doing default migration of CVar {} from bool, enum values may not be what is expected!", cVar.getName()); + using Underlying = std::underlying_type_t; const bool b = jsonValue.get();