This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch ignite-dotnet-linux-fail-test
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-dotnet-linux-fail-test
by this push:
new b2a0844 Add more info to the output
b2a0844 is described below
commit b2a0844920aa52a64450000d8fa70faf2ad3fa5d
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Fri Apr 26 20:10:19 2019 +0300
Add more info to the output
---
.../dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs
index 3e6cb98..7dd5066 100644
---
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs
+++
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs
@@ -60,6 +60,7 @@ namespace Apache.Ignite.Core.Impl.Unmanaged.Jni
_file.WriteLine("ConsoleWriter Initialized.");
_file.WriteLine("CULTURE: " + CultureInfo.CurrentCulture.Name);
+ _file.Flush();
_suppressIllegalAccessWarnings =
Environment.GetEnvironmentVariable(EnvIgniteNetSuppressJavaIllegalAccessWarnings)
== "true";
@@ -83,6 +84,7 @@ namespace Apache.Ignite.Core.Impl.Unmanaged.Jni
lock (_file)
{
_file.Write(message);
+ _file.Flush();
}
}