-
Notifications
You must be signed in to change notification settings - Fork 40
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
logger usage in rsyncd
package
#19
Comments
Yeah, in general we should try to eliminate any log.Fatal calls. The one you link to can be removed once the TODO is addressed. I don’t think we need to introduce an interface, instead we can remove the calls. |
Thanks for your reply! In my project, I want to replace the logger to adjust the logging behavior. Without using a logger interface, how can we archive that? |
Oh, I think I read your 2 questions as 1 question. For log.Printf calls (which should remain), we can introduce an interface. For log.Fatal calls, we should remove the calls. |
I did some basic searches on the code base, seems like we are using
type Logger interface {
Printf(msg string, a ...interface{})
}
I also see there is a plan for using structured logging in #5 , so I think in the future, with the logging interface, we should be able to:
What do you think of this proposal? I can help create the package and replace the existing logging calls. |
I created a draft PR in #20, PTAL |
This issue can be closed now since your PR #20 was merged, right? Or is there anything specific left to do? |
Yeah let’s close it. I will open other prs if further changes needed |
Hey, thanks for creating this great package! I am trying to import the
rsyncd
package in one of my project. I am trying to create the rsyncd server directly. However, seems like the rsyncd server is using the builtin logger package:rsync/rsyncd/rsyncd.go
Line 9 in de1cff5
And it's calling fatal during the execution:
rsync/rsyncd/filoio.go
Lines 104 to 105 in c271006
Is that possible to:
The text was updated successfully, but these errors were encountered: