/hg/icedtea-web: * rust-launcher/src/log_helper.rs: deployment.l...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Mon Feb 18 14:37:31 UTC 2019


changeset f3b0e27f23a9 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=f3b0e27f23a9
author: Jiri Vanek <jvanek at redhat.com>
date: Mon Feb 18 15:37:19 2019 +0100

	* rust-launcher/src/log_helper.rs: deployment.log.stdstreams is now honored


diffstat:

 ChangeLog                       |   4 ++++
 rust-launcher/src/log_helper.rs |  12 +++++++++---
 2 files changed, 13 insertions(+), 3 deletions(-)

diffs (41 lines):

diff -r bfafe88b8719 -r f3b0e27f23a9 ChangeLog
--- a/ChangeLog	Mon Feb 18 15:03:46 2019 +0100
+++ b/ChangeLog	Mon Feb 18 15:37:19 2019 +0100
@@ -1,3 +1,7 @@
+2019-02-18  Jiri Vanek <jvanek at redhat.com>
+
+	* rust-launcher/src/log_helper.rs: deployment.log.stdstreams is now honored
+
 2019-02-18  Jiri Vanek <jvanek at redhat.com>
 
 	For linux, implemented and used system logging
diff -r bfafe88b8719 -r f3b0e27f23a9 rust-launcher/src/log_helper.rs
--- a/rust-launcher/src/log_helper.rs	Mon Feb 18 15:03:46 2019 +0100
+++ b/rust-launcher/src/log_helper.rs	Mon Feb 18 15:37:19 2019 +0100
@@ -15,17 +15,23 @@
 //2 debug only
 pub fn log_impl(level: i32, os: &os_access::Os, s: &str) {
     if level == 0 {
-        println!("{}", s);
+        if os.advanced_logging().log_to_stdstreams {
+            println!("{}", s);
+        }
         if os.advanced_logging().log_to_system {
             let mut info2 = String::from("IcedTea-Web nativerustlauncher error. Consult - https://icedtea.classpath.org/wiki/IcedTea-Web\n");
             info2.push_str(s);
             os.system_log(&info2);
         }
     } else if level == 1 {
-        println!("{}", s);
+        if os.advanced_logging().log_to_stdstreams {
+            println!("{}", s);
+        }
     } else if level == 2 {
         if os.is_verbose() {
-            println!("{}", s);
+            if os.advanced_logging().log_to_stdstreams {
+                println!("{}", s);
+            }
         }
     }
     if os.advanced_logging().log_to_file {


More information about the distro-pkg-dev mailing list