Skip to content

Commit b6a5a8c

Browse files
authored
Merge pull request #19 from maxandersen/avoidstdout
Don't pollute std out
2 parents ceaff45 + 691bce0 commit b6a5a8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/tech/httptoolkit/javaagent/AgentMain.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ fun interceptAllHttps(config: Config, instrumentation: Instrumentation) {
127127

128128
agentBuilder.installOn(instrumentation)
129129

130-
println("HTTP Toolkit interception active")
130+
System.err.println("HTTP Toolkit interception active")
131131
}
132132

133133
abstract class MatchingAgentTransformer(private val logger: TransformationLogger) : AgentBuilder.Transformer {

0 commit comments

Comments
 (0)