diff --git a/Makefile b/Makefile index a520ab8..d3adcc0 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,9 @@ tests: go test -v ./... manual-check: - @echo "======= With Timestamp: ===========" + @echo "=========== With Everything: ===========" go run ./levelsDemo 2>&1 | TZ=UTC go run -race . - @echo "======= Without: ==================" - go run ./levelsDemo -logger-timestamp=false 2>&1 | TZ=UTC go run -race . + @echo "=========== Without Timestamp nor go Routine ID: ===========" + go run ./levelsDemo -logger-timestamp=false -logger-goroutine=false 2>&1 | go run -race . .PHONY: tests manual-check diff --git a/README.md b/README.md index bff60e6..7f25592 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,3 @@ Run make for both go tests and human check colorization example ``` make ``` - -Update the screenshot: - -``` -make screenshot -``` diff --git a/example.png b/example.png index 5596ea0..848ecd5 100644 Binary files a/example.png and b/example.png differ