@nine-lab/nine-mu 0.1.341 โ†’ 0.1.342

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.341",
3
+ "version": "0.1.342",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -183,17 +183,17 @@ export class ExceptionHook extends HTMLElement {
183
183
  // ๐ŸŽฏ [ํ•ต์‹ฌ] ๋ฆฌ์•กํŠธ๊ฐ€ ์—๋Ÿฌ ๋ฐœ์ƒ ํ›„ ํ•˜์œ„ DOM์„ Unmount/์กฐ์ž‘ํ•˜๋Š” ๋™๊ธฐ์ ์ธ ํƒ€์ด๋ฐ์„
184
184
  // ์™„์ „ํžˆ ํ˜๋ ค๋ณด๋‚ธ ๋’ค(setTimeout 0)์— ์•ˆ์ „ํ•˜๊ฒŒ Web Component UI๋ฅผ ๊ฝ‚์•„ ๋„ฃ์Šต๋‹ˆ๋‹ค.
185
185
  setTimeout(() => {
186
- console.log("๐ŸŽจ [nine-exception-hook] ๋ฆฌ์•กํŠธ ์‚ฌ์ดํด ์ข…๋ฃŒ ํ›„ ์—๋Ÿฌ UI ์ตœ์ข… ๋ Œ๋”๋ง");
186
+ trace.log("๐ŸŽจ [nine-exception-hook] ๋ฆฌ์•กํŠธ ์‚ฌ์ดํด ์ข…๋ฃŒ ํ›„ ์—๋Ÿฌ UI ์ตœ์ข… ๋ Œ๋”๋ง");
187
187
 
188
188
  const coreContainer = this.shadowRoot.querySelector('.nine-hook-core');
189
189
  if (coreContainer) {
190
190
  coreContainer.style.display = 'none';
191
- console.log("๐ŸŽจ [nine-exception-hook] <slot> ๋ณธ๋ฌธ ์˜์—ญ ์ปจํ…Œ์ด๋„ˆ ์ˆจ๊น€");
191
+ trace.log("๐ŸŽจ [nine-exception-hook] <slot> ๋ณธ๋ฌธ ์˜์—ญ ์ปจํ…Œ์ด๋„ˆ ์ˆจ๊น€");
192
192
  }
193
193
 
194
194
  const exceptionBoard = this.shadowRoot.querySelector('.nine-exception-board');
195
195
  if (!exceptionBoard) {
196
- console.error("โŒ [nine-exception-hook] .nine-exception-board ์—˜๋ฆฌ๋จผํŠธ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.");
196
+ trace.error("โŒ [nine-exception-hook] .nine-exception-board ์—˜๋ฆฌ๋จผํŠธ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.");
197
197
  return;
198
198
  }
199
199
 
@@ -213,12 +213,12 @@ export class ExceptionHook extends HTMLElement {
213
213
  `;
214
214
 
215
215
  exceptionBoard.innerHTML = errorHTML;
216
- console.log("๐ŸŽจ [nine-exception-hook] Shadow DOM์— ์—๋Ÿฌ UI ์ตœ์ข… ์‚ฝ์ž… ์„ฑ๊ณต");
216
+ trace.log("๐ŸŽจ [nine-exception-hook] Shadow DOM์— ์—๋Ÿฌ UI ์ตœ์ข… ์‚ฝ์ž… ์„ฑ๊ณต");
217
217
 
218
218
  const aiBtn = this.shadowRoot.querySelector('.nine-ai-btn');
219
219
  if (aiBtn) {
220
220
  aiBtn.addEventListener('click', () => this.#sendToAiAction(errorMessage, errorStack));
221
- console.log("๐ŸŽจ [nine-exception-hook] AI ์š”์ฒญ ๋ฒ„ํŠผ ์ด๋ฒคํŠธ ๋ฆฌ์Šค๋„ˆ ์ตœ์ข… ๋ฐ”์ธ๋”ฉ ์„ฑ๊ณต");
221
+ trace.log("๐ŸŽจ [nine-exception-hook] AI ์š”์ฒญ ๋ฒ„ํŠผ ์ด๋ฒคํŠธ ๋ฆฌ์Šค๋„ˆ ์ตœ์ข… ๋ฐ”์ธ๋”ฉ ์„ฑ๊ณต");
222
222
  }
223
223
  }, 0);
224
224
  }