Skip to content

Commit 7f1f277

Browse files
committed
fix: did a lintfix
1 parent 97686e2 commit 7f1f277

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
This library provides a JavaScript/TypeScript logger inspired by Python's logger.
44

5-
* Simple logging with default handlers supporting `console.log`, `console.error`, and `process.stderr`.
6-
* Fast, logging level checks or log filters are applied **before** log records are created
7-
* Complex log records properties support lazy evaluation, so they evaluated only when they need to be rendered
8-
* Flexible composition of loggers, handlers and formatters
9-
* Custom formatting using template literals
10-
* Supports structured logging through a JSON formatter
11-
* Supports hierarchical logging through parent-child logger graph
12-
* CI/CD tests on Linux, MacOS and Windows
13-
* Zero runtime dependencies!
14-
* Comprehensive continuous benchmarks in CI/CD
5+
- Simple logging with default handlers supporting `console.log`, `console.error`, and `process.stderr`.
6+
- Fast, logging level checks or log filters are applied **before** log records are created
7+
- Complex log records properties support lazy evaluation, so they evaluated only when they need to be rendered
8+
- Flexible composition of loggers, handlers and formatters
9+
- Custom formatting using template literals
10+
- Supports structured logging through a JSON formatter
11+
- Supports hierarchical logging through parent-child logger graph
12+
- CI/CD tests on Linux, MacOS and Windows
13+
- Zero runtime dependencies!
14+
- Comprehensive continuous benchmarks in CI/CD
1515

1616
## Installation
1717

src/tracer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ import Tracer from './Tracer.js';
44
const tracer = new Tracer();
55
export default tracer;
66

7-
export * from './types.js';
7+
export type * from './types.js';

0 commit comments

Comments
 (0)