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 9615aad  Add more info to the output
9615aad is described below

commit 9615aad3c037c456ea7810ed532f83a88c315478
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Fri Apr 26 19:57:16 2019 +0300

    Add more info to the output
---
 .../dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs     | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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 c30f849..3e6cb98 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
@@ -49,7 +49,7 @@ namespace Apache.Ignite.Core.Impl.Unmanaged.Jni
         public ConsoleWriter()
         {
             var binDir = Path.GetDirectoryName(GetType().Assembly.Location);
-            var file = Path.Combine(binDir, "dotnet-test.log");
+            var file = Path.Combine(binDir, "dotnet-test-2.log");
 
             if (File.Exists(file))
             {
@@ -78,6 +78,8 @@ namespace Apache.Ignite.Core.Impl.Unmanaged.Jni
                 message = string.Format("|ERR-{0}-{1}|: {2}", 
IsKnownWarning(message), _suppressIllegalAccessWarnings, message);
             }
 
+            Console.WriteLine(message);
+
             lock (_file)
             {
                 _file.Write(message);

Reply via email to