Skip to content

Instantly share code, notes, and snippets.

@che-free
Created January 12, 2024 01:45
Show Gist options
  • Save che-free/4d488655919583bcd779b72779274328 to your computer and use it in GitHub Desktop.
Save che-free/4d488655919583bcd779b72779274328 to your computer and use it in GitHub Desktop.
(크롬) 콘솔 그룹 로그 출력
/**
* 콘솔 로그 출력 (그룹 로그)
*
* ex) consoleGroupLog("로그 그룹", "로그-1", "로그-2", "로그-3");
*/
function consoleGroupLog() {
try {
console.groupCollapsed(arguments[0]);
for (var i = 1; i < arguments.length; i++) {
console.log(arguments[i]);
}
console.groupCollapsed("trace");
console.trace();
console.groupEnd();
console.groupEnd();
} catch (e) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment