mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 12:23:08 +09:00
11 lines
382 B
JavaScript
11 lines
382 B
JavaScript
|
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||
|
|
/* Any copyright is dedicated to the Public Domain.
|
||
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
||
|
|
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
console.log("message for level log");
|
||
|
|
console.info("message for level info");
|
||
|
|
console.warn("message for level warn");
|
||
|
|
console.error("message for level error");
|
||
|
|
console.debug("message for level debug");
|