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
Using stomp.ConnOpt.Logger as a a dial/connect option doesn't change the default logger.
stomp.ConnOpt.Logger
Although the logger is successfully assigned to the *Conn here:
*Conn
stomp/conn_options.go
Line 54 in fd49af8
It is immediately overriden here:
stomp/conn.go
Line 92 in fd49af8
becauseoptions.Logger is always log.StdLogger{}
options.Logger
log.StdLogger{}
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Using
stomp.ConnOpt.Logger
as a a dial/connect option doesn't change the default logger.Although the logger is successfully assigned to the
*Conn
here:stomp/conn_options.go
Line 54 in fd49af8
It is immediately overriden here:
stomp/conn.go
Line 92 in fd49af8
because
options.Logger
is alwayslog.StdLogger{}
The text was updated successfully, but these errors were encountered: