progress and output from docker build
?
#973
-
Some of my images take a while to build, particularly if the cache is empty/cold. If I do an actual Is it possible to catch that output when using TestContainers? I don't see a way to do it -- seems like the only result from the build is an exception (or not). It would be great if I could catch a stream from |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The messages for building and pulling images are logged using the debug log level. You can activate debug log messages in the default logger setup by enabling |
Beta Was this translation helpful? Give feedback.
The messages for building and pulling images are logged using the debug log level. You can activate debug log messages in the default logger setup by enabling
ConsoleLogger.Instance.DebugLogLevelEnabled
, or you can use your own custom logger by settingTestcontainersSettings.Logger
that forwards the messages.