mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 08:57:58 +03:00
* docs: migrate from mkdocs to mdbook - Rename old mkdocs docs/ to old-docs/ for reference - Set up new docs/ with mdbook (book.toml + src/ tree) - Mirror full nav structure from mkdocs.yml into SUMMARY.md - Add Justfile-docs with docs-serve, docs-build, docs-check, docs-install recipes - Import Justfile-docs from root Justfile - Rewrite .github/workflows/docs.yml: build step uses taiki-e/install-action to install mdbook, split into separate build + deploy jobs, PR builds run the check step too * ci(docs): pin actions to SHAs, install mdbook via release binary * ci(docs): install mdbook from apt instead of curling a release binary * dev: replace mkdocs python stack with mdbook in dev image * ci(docs): apt only works on Debian; restore release binary install for Ubuntu CI * docs: fix duplicate file entries in SUMMARY.md * docs: remove docs-install recipe * docs: remove site-url from book.toml to fix asset loading * dev: install mdbook from upstream release binary, not Debian apt The Debian package (0.4.x+ds) strips bundled font assets, leaving the built site without fonts/fonts.css. Use the upstream tarball (same as CI) so the theme is complete. Handles x86_64 and aarch64. * docs: vendor mdbook tarballs in dev/mdbook/, install from there Dockerfile.dev uses COPY + tar to install the right arch at build time. CI extracts the x86_64 tarball directly from the checkout. No network access required for either — and no stripped-fonts Debian package. * fix: unwritten
186 lines
4.4 KiB
Markdown
186 lines
4.4 KiB
Markdown
# Logging
|
|
|
|
As mentioned in the [Toolchain](./toolchain), we use
|
|
WinstonJS for logging. We use a slightly modified setup
|
|
of winston, but the same basic logging principles apply.
|
|
|
|
!!! note
|
|
If you like my defaults for logging, they can be quickly
|
|
invoked with the [Mei](https://github.com/zkldi/mei) wrapper.
|
|
|
|
---
|
|
|
|
## Log Levels
|
|
|
|
Tachi uses the following log levels, listed in order of
|
|
severity.
|
|
|
|
### Crit
|
|
|
|
```ts
|
|
logger.crit("foo");
|
|
```
|
|
|
|
`crit` or Critical is the most severe log level in tachi.
|
|
|
|
Calling this means **the process must now completely exit**.
|
|
|
|
This fail state is triggered in things like not being able
|
|
to connect to a Mongo or Redis instance, where the application
|
|
absolutely cannot function anymore and should quit immediately.
|
|
|
|
### Severe
|
|
|
|
```ts
|
|
logger.severe("foo");
|
|
```
|
|
|
|
`severe` is the second most severe log level in tachi.
|
|
|
|
Calling this means an error has occurred, and that error implies
|
|
it will apply to multiple parts of the codebase.
|
|
|
|
This log level is used with things like a Song-Chart
|
|
desync -- A chart must have a song as a parent, but if it
|
|
doesn't, that's a severe-level error.
|
|
|
|
Think of this like an error with wider-reaching implications.
|
|
|
|
### Error
|
|
|
|
```ts
|
|
logger.error("foo");
|
|
```
|
|
|
|
`error` is the third most severe log level in tachi.
|
|
|
|
Calling this means an error has occurred, but the impact of
|
|
it is limited to the function or general area it was called in.
|
|
|
|
Errors may be recovered from or ignored by the code, but generally that should be reserved for `warn`.
|
|
|
|
### Warn
|
|
|
|
```ts
|
|
logger.warn("foo");
|
|
```
|
|
|
|
`warn` indicates that something has gone wrong, but is safely
|
|
recoverable from, such as a mathematical function being given NaN unexpectedly, and just returning 0.
|
|
|
|
`warn` calls **MUST** be recoverable from, and must not
|
|
imply severe damage to the global state of the application.
|
|
|
|
### Info
|
|
|
|
```ts
|
|
logger.info("foo");
|
|
```
|
|
|
|
!!! info
|
|
This is the default [LOG_LEVEL](./config) for tachi.
|
|
|
|
This means that all the levels below this are
|
|
not displayed to the console or stored.
|
|
|
|
`info` indicates that something notable has happened. This
|
|
should not be used for any errors - instead, it should be
|
|
used for notable events, such as a new user signing up.
|
|
|
|
### Verbose
|
|
|
|
```ts
|
|
logger.verbose("foo");
|
|
```
|
|
|
|
`verbose` indicates that something has happened. This is
|
|
used for debugging, and is typically only enabled in dev
|
|
to find out what has gone wrong.
|
|
|
|
### Debug
|
|
|
|
```ts
|
|
logger.debug("foo");
|
|
```
|
|
|
|
`debug` is the least notable logging level. This is used
|
|
exclusively for debugging, and logs typically uninteresting
|
|
things like Captcha Requests being sent, or a single score was imported.
|
|
|
|
## Logger Usage
|
|
|
|
In `src/lib/logger/logger.ts` we define a wrapper around winston
|
|
for our logging needs. We use two functions for this.
|
|
|
|
The first function is `CreateLogCtx`. This spawns an
|
|
instance of the logger with "context".
|
|
|
|
This context allows us to keep track of common information
|
|
for the logger.
|
|
|
|
For file-level logging, you should do:
|
|
|
|
```ts
|
|
import CreateLogCtx from "~src/lib/logger/logger";
|
|
const logger = CreateLogCtx(__filename);
|
|
|
|
logger.info("foo");
|
|
// [src/file.ts] INFO: foo
|
|
```
|
|
|
|
!!! info
|
|
CreateLogCtx is short for Create Log Context.
|
|
|
|
This will spawn an instance of the logger with the context
|
|
of the current filename.
|
|
|
|
For more specific logging, you should create a logger
|
|
and pass it around as an argument to a function.
|
|
|
|
This is used in `src/lib/score-import`, as we create a
|
|
logger with the user's name and import type as "context".
|
|
|
|
```ts
|
|
const logger = CreateLogCtx(`${username} ${userID}`);
|
|
|
|
logger.info("foo");
|
|
// [zkldi INFO: foo
|
|
|
|
SomeOtherFunction(argument1, argument2, logger);
|
|
```
|
|
|
|
!!! info
|
|
Logger should be the last argument for a function that
|
|
takes a logger.
|
|
|
|
The only exception to this is if it uses our `fetch` API,
|
|
which **MUST** always be the last call.
|
|
|
|
If we have an existing logger and want to append context,
|
|
we can do that with the `AppendLogCtx` function.
|
|
|
|
```ts
|
|
const logger = CreateLogCtx("foo");
|
|
|
|
logger.info("hello!");
|
|
// [foo] INFO: hello!
|
|
|
|
const logger2 = AppendLogCtx("bar", logger);
|
|
|
|
logger2.info("hello!");
|
|
// [foo | bar] INFO: hello!
|
|
```
|
|
|
|
## Log Files
|
|
|
|
Logs are saved to `${pwd}/logs` in two files. The first
|
|
file logs everything above `LOG_LEVEL`. The second file
|
|
logs `error` and above calls.
|
|
|
|
!!! bug
|
|
Unintentional behaviour occurs here if LOG_LEVEL is
|
|
above `error` - the main file will not log errors,
|
|
but the error file will log errors regardless.
|
|
|
|
This may be fixed at some point, but is fairly low priority.
|