log unhandled text messages

This commit is contained in:
Green Sky 2023-08-02 20:18:55 +02:00
parent 9d9a3539bd
commit d2d6cfbf53
No known key found for this signature in database
1 changed files with 6 additions and 0 deletions

View File

@ -115,6 +115,9 @@ bool RegistryMessageModel::sendText(const Contact3 c, std::string_view message,
return true;
}
}
std::cerr << "RMM error: event send text unhandled\n";
return false;
}
@ -127,5 +130,8 @@ bool RegistryMessageModel::sendFilePath(const Contact3 c, std::string_view file_
return true;
}
}
std::cerr << "RMM error: event send file path unhandled\n";
return false;
}