895a8c42ca
console.trace generates and prints a full stacktrace for every log message. This is not what TRACE means in this library. The TRACE level is intended for logs that are more verbose than you typically want to log and should only be turned on when you are trying to trace the detailed behavior of the logged functionality. Printing the full stack trace with every message makes an already verbose setting exponentially worse.
32 lines
713 B
JSON
32 lines
713 B
JSON
{
|
|
"name": "@jdbernard/logging",
|
|
"version": "2.3.3",
|
|
"description": "Simple Javascript logging service.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"/dist"
|
|
],
|
|
"scripts": {
|
|
"build": "bunx tsc",
|
|
"prepare": "npm run build",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.jdb-software.com/jdb/js-logging.git"
|
|
},
|
|
"keywords": [
|
|
"log",
|
|
"logging"
|
|
],
|
|
"author": "Jonathan Bernard",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^8.19.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"typescript": "^5.0.4",
|
|
"typescript-eslint": "^8.19.0"
|
|
}
|
|
}
|