Ignore:
Timestamp:
Dec 20, 2011, 2:19:43 PM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
ef8df33
Parents:
6effd50
git-author:
Jessica B. Hamrick <jhamrick@…> (12/20/11 14:19:43)
git-committer:
Jessica B. Hamrick <jhamrick@…> (12/20/11 14:19:43)
Message:

Fix bugs; can now again do 'lpq' and get back a reasonable response

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/ipp/attribute.py

    rf6c6897 rcad7502  
    9393                name_length = 0
    9494
    95             # get the value length and binary value
     95            logger.debug("dumping name : %s" % self.name)
     96            logger.debug("dumping name_length : %i" % name_length)
     97            logger.debug("value tag : 0x%x" % v.tag)
     98
     99            # get the binary value
    96100            value_bin = v.packed_value
     101            # get the value length
    97102            value_length = len(value_bin)
    98103
    99             logger.debug("dumping name_length : %i" % name_length)
    100             logger.debug("dumping name : %s" % self.name)
     104            logger.debug("dumping value : %s" % v.value)
    101105            logger.debug("dumping value_length : %i" % value_length)
    102             logger.debug("dumping value (0x%x): %s" % (v.tag, v.value))
    103106
    104107            # the value tag in binary
Note: See TracChangeset for help on using the changeset viewer.