This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 7e6b5b9 Reduced log severity for profiling agent discovery
new 474d723 Merge pull request #8241 from davidyan74/patch-2
7e6b5b9 is described below
commit 7e6b5b99ccb6fcd55caf7ee573eb9c5a4c95b6e5
Author: David Yan <[email protected]>
AuthorDate: Fri Apr 5 14:54:09 2019 -0700
Reduced log severity for profiling agent discovery
---
.../apache/beam/runners/dataflow/worker/profiler/ScopedProfiler.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/profiler/ScopedProfiler.java
b/runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/profiler/ScopedProfiler.java
index 27419af..0d4ac47 100644
---
a/runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/profiler/ScopedProfiler.java
+++
b/runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/profiler/ScopedProfiler.java
@@ -135,11 +135,11 @@ public class ScopedProfiler {
// If we make it here, then we successfully invoked the above method,
which means the profiler
// is available.
- LOG.warn("Profiling Agent found. Per-step profiling is enabled.");
+ LOG.info("Profiling Agent found. Per-step profiling is enabled.");
return ProfilingState.PROFILING_PRESENT;
} catch (UnsatisfiedLinkError e) {
// If we make it here, then the profiling agent wasn't linked in.
- LOG.warn("Profiling Agent not found. Profiles will not be available from
this worker.");
+ LOG.info("Profiling Agent not found. Profiles will not be available from
this worker.");
return ProfilingState.PROFILING_ABSENT;
}
}