We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CompileDaemon seems to strip any color coming from the running binary that its watching.
The text was updated successfully, but these errors were encountered:
This conflicts with #16 so something else is going on here. Do you have a minimal example to reproduce the behaviour?
Sorry, something went wrong.
I saw this using chi router's logging middleware. Here is a pretty minimal example.
package main import ( "http" "github.com/pressly/chi" "github.com/pressly/chi/middleware" ) func main() { r := chi.NewRouter() r.Use(middleware.Logger) r.Get("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Hello World")) }) http.ListenAndServe(":8000", r) }
Here is the command I'm running for CompileDaemon
$ CompileDaemon -command=cmd/server/serve -build-dir cmd/server/ -color=true -exclude-dir=".git" -exclude-dir="Godeps" -exclude-dir=".idea" -exclude-dir="vendor"
No branches or pull requests
CompileDaemon seems to strip any color coming from the running binary that its watching.
The text was updated successfully, but these errors were encountered: