Skip to content

Commit d3d048d

Browse files
committed
correct log messages
1 parent dba3dc1 commit d3d048d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/tst/main.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,11 @@ int main(utki::span<const char*> args)
4747
app = factory();
4848

4949
if (!app) {
50-
throw std::logic_error("tst::create_application() returned nullptr");
50+
throw std::logic_error("application_factory returned nullptr");
5151
}
5252
} else {
5353
LOG([](auto& o) {
54-
o << "tst::create_application() function not found, creating basic "
55-
"application"
56-
<< '\n';
54+
o << "application_factory not found, creating basic application" << '\n';
5755
})
5856
app = std::make_unique<application>();
5957
}

0 commit comments

Comments
 (0)