kubk / mobx-log

A logger + Redux devtools for Mobx 6+
MIT License
57 stars 7 forks source link

configureMakeLoggable readme update #20

Closed TechAkayy closed 2 years ago

TechAkayy commented 2 years ago

Readme requires update. observables: false instead of observable: false

import { configureMakeLoggable } from 'mobx-log';

configureMakeLoggable({
  filters: {
    computeds: true,
    actions: true,
    observable: false, // change to "observables: false"
  }
});
kubk commented 2 years ago

@akkayy Thank you for noticing. Would you like to make a PR? It should be enough to click Pencil icon on the README file and commit directly using GitHub interface.