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
sorry i couldnt find the solution in this wrapper issues and readmes. I'm trying to disable the logs that kafka client (producer) is "producing" when publishing messages.
All my logs file are filled by Message delivered to topic: topic-name, partition: 0. I tried with
debug: 'broker',
log_level: 2;
with no success. Do you know how can I better configure my client and avoid debug logs? My desire is to keep only critical and error logs if possible
The text was updated successfully, but these errors were encountered:
Remove that 'debug: 'broker'' line completely as its name implies - it's not for normal usage, and add 'event.error' callback. There are more callbacks that you might want to add, like 'connection.failure' for example
Hi,
sorry i couldnt find the solution in this wrapper issues and readmes. I'm trying to disable the logs that kafka client (producer) is "producing" when publishing messages.
All my logs file are filled by
Message delivered to topic: topic-name, partition: 0
. I tried withwith no success. Do you know how can I better configure my client and avoid debug logs? My desire is to keep only critical and error logs if possible
The text was updated successfully, but these errors were encountered: