Currently EditorLogger only passes log output to the editor, but doesn't log anything to the local console. It would be good to also be able to pass log output through the regular Amethyst logger in order to be able to still see log output when the editor isn't running. This is especially important currently since no editor front end handles displaying log output well.
Amethyst exposes the Logger type as the concrete logger implementation, as well as the LoggerConfig for configuring the logger. EditorLogger should be updated to take a LoggerConfig as an optional parameter, and should forward any log output to an internal Amethyst Logger if configured to do so. This can likely take the form of an additional method EditorLogger::forward_logs(config: LoggerConfig).
Currently
EditorLoggeronly passes log output to the editor, but doesn't log anything to the local console. It would be good to also be able to pass log output through the regular Amethyst logger in order to be able to still see log output when the editor isn't running. This is especially important currently since no editor front end handles displaying log output well.Amethyst exposes the
Loggertype as the concrete logger implementation, as well as theLoggerConfigfor configuring the logger.EditorLoggershould be updated to take aLoggerConfigas an optional parameter, and should forward any log output to an internal AmethystLoggerif configured to do so. This can likely take the form of an additional methodEditorLogger::forward_logs(config: LoggerConfig).