Foxstore
  • Introduction
  • Base concepts
  • Store
  • Event handlers
  • Using store
    • Store by event scheme
    • Store by decorators
  • API Reference
    • Store
    • Handlers
    • Store options
      • Logging options
      • Saver
      • Dispatcher Options
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. Store options

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;
}
PreviousStore optionsNextSaver

Last updated 3 years ago

Was this helpful?