https://github.com/redsuperbat/swiss-log
Typescript logger with sensible defaults
https://github.com/redsuperbat/swiss-log
Last synced: 4 months ago
JSON representation
Typescript logger with sensible defaults
- Host: GitHub
- URL: https://github.com/redsuperbat/swiss-log
- Owner: redsuperbat
- License: mit
- Created: 2024-03-23T19:16:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-31T16:22:18.000Z (about 1 year ago)
- Last Synced: 2025-11-27T10:52:45.397Z (7 months ago)
- Language: TypeScript
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# swiss-log
A logger with sensible defaults.
## Quickstart
Default logger
```ts
import { Logger } from "swiss-logger";
const logger = Logger.withDefaults();
logger.info("swiss log");
```