0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-13 16:33:53 +01:00

modules/console: Add log flush cmd.

This commit is contained in:
Jason Volk 2020-04-22 08:23:55 -07:00
parent f0e8f60b1b
commit 0f74e9327d

View file

@ -688,6 +688,13 @@ console_cmd__mark(opt &out, const string_view &line)
return console_cmd__log__mark(out, line);
}
bool
console_cmd__log__flush(opt &out, const string_view &line)
{
log::flush();
return true;
}
//
// info
//