Skip to content

Commit

Permalink
change tabs to spaces in docs
Browse files Browse the repository at this point in the history
Signed-off-by: TinnyTerr <168141209+TinnyTerr@users.noreply.github.com>
  • Loading branch information
TinnyTerr committed Oct 20, 2024
1 parent 1bc9a94 commit f064dbc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ Log level is the level that is emitted. Shown in the enum:

```typescript
enum Level {
Trace = 0,
Debug = 1,
Info = 2,
Warn = 3,
Error = 4,
Fatal = 5,
None = 6,
Trace = 0,
Debug = 1,
Info = 2,
Warn = 3,
Error = 4,
Fatal = 5,
None = 6,
}
```

Expand Down Expand Up @@ -170,9 +170,9 @@ Type is the type of file that is written. txt and log files are written the same

```typescript
interface FileFormat {
level: `${number}`; // See #LogLevel for level enum
date: `${string}`; // See getTime() in src/index.ts
data: `${string}`; // Stringified JSON or string/numbers
level: `${number}`; // See #LogLevel for level enum
date: `${string}`; // See getTime() in src/index.ts
data: `${string}`; // Stringified JSON or string/numbers
}

type File = FileFormat[]
Expand Down

0 comments on commit f064dbc

Please sign in to comment.