diff options
author | Guido Günther <agx@sigxcpu.org> | 2014-07-28 15:35:01 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2014-07-28 15:35:01 +0200 |
commit | 3f43e4ee68d2a169a3e604a6bd0b60f99b71d812 (patch) | |
tree | 21674d5a8f67b8457c8284f00f7a2b951a568c12 | |
parent | 23090c9c4e2f2654064269e66da8efba103f0515 (diff) | |
download | git-buildpackage-3f43e4ee68d2a169a3e604a6bd0b60f99b71d812.tar.gz git-buildpackage-3f43e4ee68d2a169a3e604a6bd0b60f99b71d812.tar.bz2 git-buildpackage-3f43e4ee68d2a169a3e604a6bd0b60f99b71d812.zip |
linkeList: turn the bug printouts to debug level
We don't take any action anyway so no need to confuse users.
-rw-r--r-- | gbp/rpm/linkedlist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/rpm/linkedlist.py b/gbp/rpm/linkedlist.py index ca000453..74d897bc 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 |