[chronojump] Removed some prints



commit 5bef3500d76f4f5a89478ab020c7501f406f0acb
Author: Xavier de Blas <xaviblas gmail com>
Date:   Thu Sep 9 09:33:26 2021 +0200

    Removed some prints

 src/sqlite/jump.cs   | 4 ++--
 src/sqlite/jumpRj.cs | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/sqlite/jump.cs b/src/sqlite/jump.cs
index 608f9ffd8..153523e56 100644
--- a/src/sqlite/jump.cs
+++ b/src/sqlite/jump.cs
@@ -393,7 +393,7 @@ class SqliteJump : Sqlite
          List<Jump> jmp_l = new List<Jump>();
          Jump jmp;
 
-         LogB.Information("Imprimire Jumps:");
+         //LogB.Information("Imprimire Jumps:");
          while(reader.Read()) {
                  jmp = new Jump (
                                  Convert.ToInt32(reader[0].ToString()),              //uniqueID
@@ -443,7 +443,7 @@ class SqliteJump : Sqlite
 
 
                  jmp_l.Add(jmp);
-                 LogB.Information(jmp.ToString());
+                 //LogB.Information(jmp.ToString());
          }
          return jmp_l;
        }
diff --git a/src/sqlite/jumpRj.cs b/src/sqlite/jumpRj.cs
index e14fd6ae2..87c81be90 100644
--- a/src/sqlite/jumpRj.cs
+++ b/src/sqlite/jumpRj.cs
@@ -15,7 +15,7 @@
  *  along with this program; if not, write to the Free Software
  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  *
- * Copyright (C) 2004-2020   Xavier de Blas <xaviblas gmail com> 
+ * Copyright (C) 2004-2021   Xavier de Blas <xaviblas gmail com>
  */
 
 using System;
@@ -281,7 +281,7 @@ class SqliteJumpRj : SqliteJump
          List<JumpRj> jmp_l = new List<JumpRj>();
          JumpRj jmp;
 
-         LogB.Information("Imprimire JumpRjs:");
+         //LogB.Information("Imprimire JumpRjs:");
          while(reader.Read()) {
                  jmp = new JumpRj (
                                  Convert.ToInt32(reader[0].ToString()),        //jumpRj.uniqueID
@@ -333,7 +333,7 @@ class SqliteJumpRj : SqliteJump
 
 
                  jmp_l.Add(jmp);
-                 LogB.Information(jmp.ToString());
+                 //LogB.Information(jmp.ToString());
          }
          return jmp_l;
        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]