Logging options
Configuration of logging
Here you can set which entities you want to see in logs, what would get your logs and would there any logs.
interface LogOptions {
logger?: (...args: unknown[]) => void;
logOn?: boolean;
events?: boolean;
reducers?: boolean;
actions?: boolean;
effects?: boolean;
state?: boolean;
}
Last updated
Was this helpful?