Skip to content

[Chore] 本番コードから debugLog を除去する #9

@ryoupr

Description

@ryoupr

問題

content.js / popup.js ともに debugLog() / errorLog() が本番コードに残っており、ユーザーのブラウザコンソールに大量のログが出力される。

対応方針

以下のいずれかで対応する。

案A: 完全削除(推奨)

debugLog / errorLog 関数と全ての呼び出し箇所を削除する。

案B: フラグ制御

const DEBUG = false;
function debugLog(message, data = null) {
  if (!DEBUG) return;
  // ...
}

優先度

🟡 中(リリース前に対応推奨)

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions