UI: Remove __FUNCTION__ usage

This code was originally tested with visual C, which supports using
__FUNCTION__ in this way.  These potential error cases shouldn't
technically happen anyway, so just remove __FUNCTION__.
This commit is contained in:
jp9000 2018-02-08 07:34:36 -08:00
parent 32e60ba65f
commit f0f0d2c8f6

View file

@ -409,7 +409,7 @@ void OBSBasic::on_actionImportSceneCollection_triggered()
obs_data_set_string(scenedata, "name", name.c_str());
if (!GetFileSafeName(name.c_str(), file)) {
blog(LOG_WARNING, __FUNCTION__ ": Failed to create "
blog(LOG_WARNING, "Failed to create "
"safe file name for '%s'",
name.c_str());
return;
@ -418,7 +418,7 @@ void OBSBasic::on_actionImportSceneCollection_triggered()
string filePath = path + file;
if (!GetClosestUnusedFileName(filePath, "json")) {
blog(LOG_WARNING, __FUNCTION__ ": Failed to get "
blog(LOG_WARNING, "Failed to get "
"closest file name for %s",
file.c_str());
return;