i guess no way around exceptions..

This commit is contained in:
2022-05-08 17:11:43 +02:00
parent ca501272d8
commit e1aa39f5e4
2 changed files with 115 additions and 36 deletions

View File

@ -1,12 +1,14 @@
#include "testFmt.h"
void fmtTests() {
sif::fdebug_t("Hallo\n");
sif::fdebug("Hallo\n");
sif::finfo_t("Hallo\n");
sif::finfo("Hallo\n");
sif::fwarning("Hello\n");
sif::fwarning_t("Hello\n");
sif::ferror("Hello\n");
sif::ferror_t("Hello\n");
sif::fdebug(__FILENAME__, __LINE__, "Hello {} {}", "World\n");
sif::fdebug_t(__FILENAME__, __LINE__, "Hallo\n");
FSFW_LOGD("{}", "Hallo\n");
// MY_LOG("{}", "test\n");
// sif::finfo_t("Hallo\n");
// sif::finfo("Hallo\n");
// sif::fwarning("Hello\n");
// sif::fwarning_t("Hello\n");
// sif::ferror("Hello\n");
// sif::ferror_t("Hello\n");
}