Commit 3de8193d authored by Antoine Millet's avatar Antoine Millet
Browse files

CCConf debug now log the tag value when a new tag is added.

parent a4e26b67
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -237,7 +237,8 @@ class CCConf(object):
        :raise CCConf.UnknownAccount: if user login is unknown
        '''

        logging.debug('Added tag %s for %s account' % (login, tag))
        logging.debug('Added tag %s:%s for %s account' % (tag_name, tag_value,
                                                          login))
        conf = self._get_conf(login)
        conf['tags'][tag_name] = tag_value
        self._set_conf(login, conf)