From 2aa763f8fae4fc46bbbfd5b012f865afa69c068b Mon Sep 17 00:00:00 2001 From: iamgamja Date: Wed, 9 Feb 2022 16:01:55 +0900 Subject: edit files --- files/ko/web/api/console/debug/index.md | 68 ++++++++++++++------------------- 1 file changed, 28 insertions(+), 40 deletions(-) (limited to 'files/ko/web/api/console/debug') diff --git a/files/ko/web/api/console/debug/index.md b/files/ko/web/api/console/debug/index.md index 86a3abbc0d..2f3e0daa1c 100644 --- a/files/ko/web/api/console/debug/index.md +++ b/files/ko/web/api/console/debug/index.md @@ -1,59 +1,47 @@ --- title: console.debug() -slug: Web/API/Console/debug +slug: Web/API/console/debug tags: - API + - Debug + - Debugging + - Developer Tools + - Logging - Method - Reference - console + - log + - output + - print +browser-compat: api.console.debug translation_of: Web/API/Console/debug --- -
{{APIRef("Console API")}}
+{{APIRef("Console API")}} -

console.debug() 메서드는 메시지를 "디버그" 중요도로 콘솔에 출력합니다. 디버그 중요도 메시지는 별도 설정 없이는 보이지 않습니다.

+**`console.debug()`** 메서드는 메시지를 "디버그" 중요도로 콘솔에 출력합니다. 디버그 중요도 메시지는 별도 설정 없이는 보이지 않습니다. 대부분의 경우 로그 수준은 콘솔 UI 내에서 구성됩니다. 이 로그 수준은 \`Debug\` 또는 \`Verbose\` 로그 수준에 해당할 수 있습니다. -

{{AvailableInWorkers}}

+{{AvailableInWorkers}} -

구문

+## 구문 -
console.debug(obj1 [, obj2, ..., objN]);
-console.debug(msg [, subst1, ..., substN]);
-
+```js +console.debug(obj1 [, obj2, ..., objN]); +console.debug(msg [, subst1, ..., substN]); +``` -

매개변수

+### 매개변수 -
-
obj1 ... objN
-
출력에 사용할 JavaScript 객체. 각각의 문자열 표현을 순서대로 출력합니다.
-
msg
-
0개 이상의 치환 문자열을 포함하는 JavaScript 문자열.
-
subst1 ... substN
-
msg 매개변수의 치환 문자열에 대입할 JavaScript 객체.
-
+- `obj1` ... `objN` + - : 출력에 사용할 JavaScript 객체. 각각의 문자열 표현은 입력한 순서대로 함께 출력됩니다. +- `msg` + - : 0개 이상의 치환 문자열을 포함하는 JavaScript 문자열. `subst1`부터 `substN`까지 순서대로 치환됩니다. +- `subst1` ... `substN` + - : `msg` 매개변수의 치환 문자열에 대체할 JavaScript 객체. 출력 형식에 추가 제어를 할 수 있게 해줍니다. 치환 작동 방식에 대한 설명은 [문자열 치환 사용하기](/ko/docs/Web/API/console#문자열_치환_사용하기)를 참조하세요. -

명세

+## 명세 - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#debug", "console.debug()")}}{{Spec2("Console API")}}Initial definition
+{{Specifications}} -

브라우저 호환성

+## 브라우저 호환성 -
- - -

{{Compat("api.Console.debug")}}

-
+{{Compat}} -- cgit v1.2.3-54-g00ecf