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 f4e0a6b  Add more info to the log
f4e0a6b is described below

commit f4e0a6b02ec53c1ce24be5233ea3763fc54feb4b
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Fri Apr 26 19:32:12 2019 +0300

    Add more info to the log
---
 .../dotnet/Apache.Ignite.Core/Impl/Unmanaged/Jni/ConsoleWriter.cs     | 4 ++++
 1 file changed, 4 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 72bd384..7d09301 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
@@ -20,6 +20,7 @@ using System;
 namespace Apache.Ignite.Core.Impl.Unmanaged.Jni
 {
     using System.Diagnostics.CodeAnalysis;
+    using System.Globalization;
 
     /// <summary>
     /// Console writer.
@@ -45,6 +46,9 @@ namespace Apache.Ignite.Core.Impl.Unmanaged.Jni
 
         public ConsoleWriter()
         {
+            Console.WriteLine("ConsoleWriter Initialized.");
+            Console.WriteLine("CULTURE: " + CultureInfo.CurrentCulture.Name);
+
             _suppressIllegalAccessWarnings =
                 
Environment.GetEnvironmentVariable(EnvIgniteNetSuppressJavaIllegalAccessWarnings)
 == "true";
         }

Reply via email to