-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): support for console mute configuration (#124)
Summary: OSS feature request: #124 By setting `config.muteConfig`, JS code using MemLab API can set the mute config for different types of console messages (e.g., warning, error etc.) ``` type MuteConfig = { muteError?: boolean; muteWarning?: boolean; muteInfo?: boolean; muteSuccess?: boolean; muteLog?: boolean; muteTable?: boolean; muteTrace?: boolean; muteTopLevel?: boolean; muteHighLevel?: boolean; muteMidLevel?: boolean; muteLowLevel?: boolean; }; ``` Reviewed By: twobassdrum Differential Revision: D61287025 fbshipit-source-id: cb0d8b3a06d3f80d61ad107d0d41a633d8e69307
- Loading branch information
1 parent
f2af467
commit 7f6fcee
Showing
2 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters