Skip to content

Commit

Permalink
effective revert of b0af5f2
Browse files Browse the repository at this point in the history
let's force enable custom formatters for now
  • Loading branch information
darwin committed May 16, 2020
1 parent d1e2ead commit 4d321af
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions resources/unpacked/devtools/front_end/sdk/RuntimeModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ export class RuntimeModel extends SDKModel {
this._hasSideEffectSupport = null;

// TODO(1016755): remove custom formatters altogether.
Common.Settings.Settings.instance().moduleSetting('customFormatters').set(false);
this._agent.setCustomObjectFormatterEnabled(false);
// darwin: revert this for now, wait for what comes next
// Common.Settings.Settings.instance().moduleSetting('customFormatters').set(false);
// this._agent.setCustomObjectFormatterEnabled(false);
Common.Settings.Settings.instance().moduleSetting('customFormatters').set(true);
this._agent.setCustomObjectFormatterEnabled(true);

Common.Settings.Settings.instance()
.moduleSetting('customFormatters')
Expand Down

0 comments on commit 4d321af

Please sign in to comment.