From 127c99f16f212365c655d585fff601c2a7793f17 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 26 Oct 2015 20:53:49 +0100 Subject: [PATCH] Remove old logging functions --- src/runtime.rs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/runtime.rs b/src/runtime.rs index e65d3ecf..195cd620 100644 --- a/src/runtime.rs +++ b/src/runtime.rs @@ -67,22 +67,6 @@ impl<'a> Runtime<'a> { } } - pub fn debug(&self, string : &'static str) { - if self.config.is_debugging() { - println!("{}", string); - } - } - - pub fn print(&self, string : &'static str) { - if self.config.is_verbose() || self.config.is_debugging() { - println!("{}", string); - } - } - - pub fn trace(string : &'static str) { - // writeln!(&mut stderr, "{}", string); - } - pub fn is_verbose(&self) -> bool { self.config.is_verbose() }