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
We should implement collecting logs from the containers. Thanks to test containers, there is already a method for gathering all logs from a specific container, getLogs(), and thus implementing this should be fairly easy.
It would help with debugging a lot (i.e., instead of manually checking each container, one can have logs at the end of the test).
Each container should expose: the isCollectLogsEnable and logFilePath instance variables.
For instance
newStrimziKafkaContainer()
.withLogCollection()
// If not specified then the default is used
.withLogFilePath()
The text was updated successfully, but these errors were encountered:
We should implement collecting logs from the containers. Thanks to test containers, there is already a method for gathering all logs from a specific container,
getLogs(),
and thus implementing this should be fairly easy.It would help with debugging a lot (i.e., instead of manually checking each container, one can have logs at the end of the test).
Each container should expose: the
isCollectLogsEnable
andlogFilePath
instance variables.For instance
The text was updated successfully, but these errors were encountered: