java-exercism-exercises/log-levels/HINTS.md

1.3 KiB

Hints

General

1. Get message from a log line

  • Different options to search for text in a string are explored in this tutorial.
  • How to split strings can be seen here
  • Removing white space is built-in.

2. Get log level from a log line

  • Changing a String's casing is explored here and here.

3. Reformat a log line