浏览代码

:mute: https://github.com/siyuan-note/siyuan/issues/13346

Vanessa 7 月之前
父节点
当前提交
61d69cc213
共有 4 个文件被更改,包括 0 次插入12 次删除
  1. 0 1
      app/src/protyle/util/Options.ts
  2. 0 6
      app/src/protyle/util/log.ts
  3. 0 3
      app/src/protyle/wysiwyg/input.ts
  4. 0 2
      app/src/types/protyle.d.ts

+ 0 - 1
app/src/protyle/util/Options.ts

@@ -21,7 +21,6 @@ export class Options {
         classes: {
             preview: "",
         },
-        debugger: Constants.NODE_ENV === "development",
         hint: {
             delay: 200,
             emoji: {

+ 0 - 6
app/src/protyle/util/log.ts

@@ -1,6 +0,0 @@
-export const log = (method: string, content: string, type: string, print: boolean) => {
-    if (print) {
-        // @ts-ignore
-        console.log(`${method} - ${type}: ${content}`);
-    }
-};

+ 0 - 3
app/src/protyle/wysiwyg/input.ts

@@ -1,4 +1,3 @@
-import {log} from "../util/log";
 import {focusBlock, focusByWbr} from "../util/selection";
 import {Constants} from "../../constants";
 import * as dayjs from "dayjs";
@@ -174,8 +173,6 @@ export const input = async (protyle: IProtyle, blockElement: HTMLElement, range:
         ) &&
         !(tempElement.content.childElementCount === 1 && tempElement.content.firstElementChild.classList.contains("code-block") && type === "NodeCodeBlock")
     ) {
-        log("SpinBlockDOM", blockElement.outerHTML, "argument", protyle.options.debugger);
-        log("SpinBlockDOM", html, "result", protyle.options.debugger);
         if (blockElement.getAttribute("data-type") === "NodeHeading" && blockElement.getAttribute("fold") === "1" &&
             tempElement.content.firstElementChild.getAttribute("data-subtype") !== blockElement.dataset.subtype) {
             setFold(protyle, blockElement, undefined, undefined, false);

+ 0 - 2
app/src/types/protyle.d.ts

@@ -458,8 +458,6 @@ interface IProtyleOptions {
     }
     /** 内部调试时使用 */
     _lutePath?: string;
-    /** 是否显示日志。默认值: false */
-    debugger?: boolean;
     /** 是否启用打字机模式。默认值: false */
     typewriterMode?: boolean;
     /** 多语言。默认值: 'zh_CN' */