26 lines
507 B
Markdown
26 lines
507 B
Markdown
# Logging Service
|
|
The logging service uses the first byte in the message to identify the request type.
|
|
|
|
## Current Log Impl
|
|
<!-- This is a hack but should be noted -->
|
|
[..] -> string
|
|
[+1] -> Log Level. Refer to the log level table.
|
|
|
|
## Log
|
|
[0] -> Log a message.
|
|
[1] -> Log Level.
|
|
[2..10] -> Path length
|
|
[11..] -> Path String
|
|
[..u64] -> Line number
|
|
[..u64] -> column number
|
|
[..u64] -> Log String length
|
|
[..] -> Log String
|
|
|
|
|
|
## Log Level Table
|
|
0 -> Error
|
|
1 -> Warn
|
|
2 -> Info
|
|
3 -> Debug
|
|
4 -> Trace
|