106e46ed (#677) Added the KeepSome rotation strategy. Like KeepAll it will rename files when the max file size is exceeded but will keep only the specified amount of files around.
02481501 (#2377 by @3lpsy) Add a is_skip_logger flag to the Log Plugin Builder struct, a skip_logger() method to the Builder, and logic to avoid acquiring (creating) a logger and attaching it to the global logger. Since acquire_logger is pub, a LoggerNotInitialized is added and returned if it's called when the is_skip_looger flag is set. Overall, this feature permits a user to avoid calling attach_logger which can only be called once in a program's lifetime and allows the user to control the logger returned from logger(). Additionally, it also will allow users to generate multiple Tauri Mock apps in test suites that run and parallel and have the log plugin attached (assuming they use skip_logger()).
3a79266b (#2173 by @FabianLars) Bumped all plugins to v2.2.0. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.
[2.0.2]
69d508ee (#2157 by @Legend-Master) Make log functions omit caller location when failed to parse it instead of throwing
[2.0.1]
371a2f73 (#2021 by @Legend-Master) Make webview log target more consistent that it always starts with webview
[2.0.2]
606fa08d (#1997 by @renovate) Potentially breaking: Updated fern from 0.6 to 0.7. This is technically a breaking change because fern is re-exported in tauri-plugin-log.
20a1d24e (#1579 by @lucasfernog) Added Builder::split which returns the raw logger implementation so you can pipe to other loggers such as multi_log or tauri-plugin-devtools.