Skip to content

Commit

Permalink
Add debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Aug 6, 2024
1 parent c2c9725 commit 6b0dd20
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions treatment-service/integration-test/fetch_treatment_it_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,16 @@ func (suite *TreatmentServiceTestSuite) SetupSuite() {
if err != nil {
panic(err)
}
kafkaNetworks, err := kafkaContainer.Networks(ctx)
if err != nil {
panic(err)
}
fmt.Println(kafkaNetworks)
kafkaInfo, err := kafkaContainer.Inspect(ctx)
if err != nil {
panic(err)
}
fmt.Println(kafkaInfo)
kafkaHost, err := kafkaContainer.Host(ctx)
if err != nil {
panic(err)
Expand Down

0 comments on commit 6b0dd20

Please sign in to comment.