Package-level declarations
Types
Store logger can be invoked by any code in the store. log prints a message to the logger instance configured when building the store.
Log level of this store. Override when installing the plugin or leave as a default for sensible log levels. Log level may be represented using a system log level, such as on JS, Wasm, Android and iOS. On other platforms, log level will be represented as an emoji (StoreLogLevel.asSymbol).
Properties
Convert StoreLogLevel to Android Log priority.
Returns an emoji resembling this log level.
A logger that prints to console (println)
A StoreLogger that does nothing.
Android-specific platform store logger that prints to logcat (Log)
Alias for ConsoleStoreLogger
A platform-specific StoreLogger implementation that uses the current OS's log stream. This logger should be used as the default choice for platform-specific logging requirements.
Logger that prints to console.
A StoreLogger implementation that prints to System.out
A platform StoreLogger implementation that prints to console (alias for ConsoleStoreLogger)
Alias for ConsoleStoreLogger
A StoreLogger instance for each supported platform
A StoreLogger instance for the WASM/WASI platform.
Functions
Shorthand for log with StoreLogLevel.Debug as the log level.
Shorthand for log with StoreLogLevel.Error as the log level.
Shorthand for log with StoreLogLevel.Info as the log level.
Alias for StoreLogger.log that can log exceptions
Alias for StoreLogger.log with optional parameters
Write a message to StoreLogger. Tag is the Store.name by default.
Shorthand for log with StoreLogLevel.Trace as the log level.
Shorthand for log with StoreLogLevel.Warn as the log level.