Change docker executor launch command log level. Review: https://reviews.apache.org/r/29340
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/499035aa Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/499035aa Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/499035aa Branch: refs/heads/master Commit: 499035aa4ea2a25e83c3cb86f6a1f8b417241ed4 Parents: 6b7f0da Author: Timothy Chen <[email protected]> Authored: Fri Dec 19 19:55:20 2014 +0000 Committer: Timothy Chen <[email protected]> Committed: Sun May 24 22:27:40 2015 -0700 ---------------------------------------------------------------------- src/slave/containerizer/docker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/499035aa/src/slave/containerizer/docker.cpp ---------------------------------------------------------------------- diff --git a/src/slave/containerizer/docker.cpp b/src/slave/containerizer/docker.cpp index 58505f9..66e3746 100644 --- a/src/slave/containerizer/docker.cpp +++ b/src/slave/containerizer/docker.cpp @@ -779,7 +779,7 @@ Future<pid_t> DockerContainerizerProcess::___launch( command = path::join(flags.launcher_dir, command); - VLOG(2) << "Launching docker executor with command: " << command; + VLOG(1) << "Launching docker executor with command: " << command; // Construct the mesos-docker-executor using the "name" we gave the // container (to distinguish it from Docker containers not created @@ -884,7 +884,7 @@ Future<Nothing> DockerContainerizerProcess::___launchInContainer( commandInfo.set_value(command); commandInfo.set_shell(true); - VLOG(2) << "Launching docker executor in container with command: " << command; + VLOG(1) << "Launching docker executor in container with command: " << command; return docker->run( containerInfo,
