Screen Too Small

This course material requires a larger screen to properly display the terminal and editor interfaces.

Please use a tablet, laptop, or desktop computer for the best learning experience.

You can continue browsing, but the experience will be significantly limited.

Clean Up the Log File Challenge

You're given a messy logfile and your boss wants it cleaned up or you're fired!
Transform this into a clean, minimal log by removing all lines that:
Start with DEBUG or TRACE
Leave only INFO and ERROR lines
Also, Add a blank line between each remaining log entry

Starting Text

vim@sandbox: ~/start.txt
vim
INFO 2024-04-01 10:00:00 Starting process DEBUG pid=4837 user=admin ERROR 2024-04-01 10:00:02 failed to connect to database TRACE connection timeout after 5000ms DEBUG retrying connection... INFO 2024-04-01 10:00:05 Connection successful DEBUG pid=4837 user=admin

Expected Output

vim@sandbox: ~/expected.txt
vim
INFO 2024-04-01 10:00:00 Starting process ERROR 2024-04-01 10:00:02 failed to connect to database INFO 2024-04-01 10:00:05 Connection successful

Hold on, cowboy

You gotta sign up to view challenges

New challenges appear every week. They're fun, and insightful

Sign up or sign in now!