Skip to content
New issue

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

How do write an file? #3

Closed
matheuscamarques opened this issue Aug 3, 2021 · 2 comments
Closed

How do write an file? #3

matheuscamarques opened this issue Aug 3, 2021 · 2 comments

Comments

@matheuscamarques
Copy link

How do write an file?

@ftamhar
Copy link

ftamhar commented Dec 30, 2021

You can use this code

	f, err := os.OpenFile("mylogger.log", os.O_CREATE|os.O_APPEND|os.O_RDWR, 0777)
	if err != nil {
		panic(err)
	}
	defer f.Close()

	logger := zerolog.New(f)
	r := chi.NewRouter()
	r.Use(httplog.RequestLogger(logger))

@pkieltyka
Copy link
Member

solved in v2. You can pass io.Writer to options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants