From 3f43e4ee68d2a169a3e604a6bd0b60f99b71d812 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 28 Jul 2014 15:35:01 +0200 Subject: linkeList: turn the bug printouts to debug level We don't take any action anyway so no need to confuse users. --- gbp/rpm/linkedlist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gbp') diff --git a/gbp/rpm/linkedlist.py b/gbp/rpm/linkedlist.py index ca00045..74d897b 100644 --- a/gbp/rpm/linkedlist.py +++ b/gbp/rpm/linkedlist.py @@ -36,7 +36,7 @@ class LinkedListNode(object): def data(self): """Get data stored into node""" if self._data is None: - gbp.log.err("BUG: referencing a deleted node!") + gbp.log.debug("BUG: referencing a deleted node!") return("") return self._data @@ -55,7 +55,7 @@ class LinkedListNode(object): '' """ if data is None: - gbp.log.err("BUG: trying to store 'None', not allowed") + gbp.log.debug("BUG: trying to store 'None', not allowed") data = "" self._data = data -- cgit v1.2.3