2
0
forked from Ivasoft/DSView

Update log print line format

This commit is contained in:
dreamsourcelabTAI
2023-06-20 10:43:42 +08:00
parent 7f87a6b4af
commit b0b91469b8
27 changed files with 176 additions and 176 deletions

View File

@@ -218,7 +218,7 @@ bool bHighScale = true;
//init core
if (!control->Init()){
dsv_err("%s", "init error!");
dsv_err("init error!");
return 1;
}
@@ -240,7 +240,7 @@ bool bHighScale = true;
}
catch (const std::exception &e)
{
dsv_err("%s", "main() catch a except!");
dsv_err("main() catch a except!");
const char *exstr = e.what();
dsv_err("%s", exstr);
}