[REEF-1937] Use Verbose log level in C# HelloREEF example JIRA: [REEF-1937](https://issues.apache.org/jira/browse/REEF-1937)
Pull Request: This closes #1403 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/e90ffbee Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/e90ffbee Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/e90ffbee Branch: refs/heads/REEF-335 Commit: e90ffbee09919aa6cfadc999cc82843b331e2445 Parents: 48e65c0 Author: Sergiy Matusevych <[email protected]> Authored: Fri Oct 27 15:14:39 2017 -0700 Committer: Markus Weimer <[email protected]> Committed: Sun Oct 29 08:52:33 2017 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.Examples.HelloREEF/HelloREEF.cs | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/e90ffbee/lang/cs/Org.Apache.REEF.Examples.HelloREEF/HelloREEF.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/HelloREEF.cs b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/HelloREEF.cs index 20c80fa..1164719 100644 --- a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/HelloREEF.cs +++ b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/HelloREEF.cs @@ -26,6 +26,7 @@ using Org.Apache.REEF.Tang.Annotations; using Org.Apache.REEF.Tang.Implementations.Tang; using Org.Apache.REEF.Tang.Interface; using Org.Apache.REEF.Tang.Util; +using Org.Apache.REEF.Utilities.Logging; namespace Org.Apache.REEF.Examples.HelloREEF { @@ -64,6 +65,7 @@ namespace Org.Apache.REEF.Examples.HelloREEF .AddDriverConfiguration(helloDriverConfiguration) .AddGlobalAssemblyForType(typeof(HelloDriver)) .SetJobIdentifier("HelloREEF") + .SetJavaLogLevel(JavaLoggingSetting.Verbose) .Build(); _reefClient.Submit(helloJobRequest);
