Skip to content

Commit

Permalink
Closing up again for production.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Sep 2, 2022
1 parent 07117f2 commit e386702
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion svc/ics.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let ICS = function () {
const levels = ["error", "warn", "info", "debug"],
realConsole = console;
let upThis = this;
this.level = levels.indexOf("debug");
this.level = levels.indexOf("info");
levels.forEach(function (e, i) {
upThis[e] = function () {
if (upThis.level >= i) {
Expand Down
4 changes: 2 additions & 2 deletions svc/minuette.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {smartClone} from "./minuette/smartClone.js";
import {errorFilter, stackFilter} from "./minuette/stackFilter.js";
self.blacklistEvent = ["visibilitychange", "pagehide", "pageshow"];
self.fakeScreenVideo = undefined;
self.FunStore = {}, self.FunProxy = {};
//self.FunStore = {}, self.FunProxy = {};
{
let extDataId = "-ReplaceMeWithSomethingUnique-";
// Constants
Expand All @@ -28,7 +28,7 @@ self.FunStore = {}, self.FunProxy = {};
let MinConf = {};
MinConf.h = {g: 1, f: 1, b: 1, p: 1, r: 1}; // History API
// Store pool for all event listeners
//let FunStore = {}, FunProxy = {};
let FunStore = {}, FunProxy = {};
// Original console API exposure
RawApi.console = console;
// Console hijack
Expand Down
4 changes: 2 additions & 2 deletions svc/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ listeners.pageMsg = function (conn) {
case "evDel": {
break;
};
/*case "asyncNew":
case "asyncNew":
case "asyncRun":
case "asyncThen":
case "asyncCatch":
Expand All @@ -86,7 +86,7 @@ listeners.pageMsg = function (conn) {
case "promRace":
case "promSettle": {
break;
};*/
};
default: {
console.debug(msg);
};
Expand Down

0 comments on commit e386702

Please sign in to comment.