Turn "missing onDelete callback" error into info

This commit is contained in:
Maschell 2026-04-29 08:34:59 +02:00
parent f9baf2ec55
commit 726f96320f

View File

@ -17,7 +17,7 @@ namespace WUPSConfigAPIBackend {
WUPSConfigItemV2::~WUPSConfigItemV2() {
if (this->mCallbacks.onDelete == nullptr) {
DEBUG_FUNCTION_LINE_WARN("onDelete callback not implemented. [%s]", mDisplayName.c_str());
DEBUG_FUNCTION_LINE_INFO("onDelete callback not implemented. [%s]", mDisplayName.c_str());
return;
}
this->mCallbacks.onDelete(mContext);