You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When debugging zeromq/malamute#335 I noticed differing behavior where if the client or server was unable to load a .cfg file then it would give zsys_warningsee line here where as czmq when using the zauth actor only uses zsys_info when it cannot load a config file. This means it would be missed in tests/prod unless VERBOSE is on - this seems more like a warning to me
The text was updated successfully, but these errors were encountered:
Solution: Use
zsys_warning
to match official project malamute's behaviorProblem line: https://github.com/zeromq/czmq/blob/master/src/zauth.c#L137
When debugging zeromq/malamute#335 I noticed differing behavior where if the client or server was unable to load a
.cfg
file then it would givezsys_warning
see line here where asczmq
when using the zauth actor only useszsys_info
when it cannot load a config file. This means it would be missed in tests/prod unless VERBOSE is on - this seems more like a warning to meThe text was updated successfully, but these errors were encountered: