Log line parser
November 4, 2020 ยท View on GitHub
Story
In this exercise you'll be processing log-lines.
Each log line is a string formatted as follows: "[<LEVEL>]: <MESSAGE>".
There are three different log levels:
INFOWARNINGERROR
Tasks
These are example tasks that fit the log line parser:
- Get message from a log line
- Get log level from a log line
- Convert a log line to a different format
Implementations
- C#: log-levels (reference implementation)
- C++: strings
- F#: strings
- Go: strings-package
- Java: strings
- Python: strings
- Ruby: strings