Good day everyone,
I built a small application. What I would like to have is to display some logging information during the initialization stage but then hide the terminal for the rest of the run.
I know, that I can built as --app:gui , but then the terminal will not be displayed at all. Without --app:gui, the console is there and my log entries are displayed but it will stay and if you close the window the background processes are all terminated.
I saw that the std/logging has a newConsoleLogger, but this does not open a window for it to be displayed.
Which approach would you suggest should I go to get this desired behaviour. (Ideally without having to write an own console myself.)