Ignore:
Timestamp:
17 Mar 2007, 21:43:32 (18 years ago)
Author:
Henrik Bettermann
Message:

logger messages corrected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/Widgets.py

    r1571 r1573  
    370370            name = " ".join(cvs)
    371371            if not found:
    372                 logger.info('%(matric_no)s mismatch %(value)s not in %(name)s' % vars())
    373                 err = 'No Name does match.'
     372                logger.info('%(matric_no)s did not find %(value)s in %(name)s' % vars())
     373                err = 'No name does match.'
    374374            else:
    375375                logger.info('%(matric_no)s found %(value)s in %(name)s' % vars())
     
    401401        if not valid or not value:
    402402            err = 'Invalid matric_no string %s.' % value
    403             logger.info('%s invalid matric_no string' % value)
     403            logger.info('Invalid matric_no string %s' % value)
    404404        else:
    405405            value = value.upper()
     
    408408                res = returning(matric_no = value)
    409409                if len(res) < 1:
    410                     logger.info('%s matric_no not found' % value)
    411                     err = 'No Student with matric_no %s.' % (value)
     410                    logger.info('matric_no %s not found' % value)
     411                    err = 'No student with matric_no %s.' % (value)
    412412                    continue
    413413                datastructure['student'] = res[0]
    414414                res = results(matric_no = value)
    415415                if len(res) < 1:
    416                     err = 'No Results with matric_no %s.' % (value)
     416                    err = 'No results with matric_no %s.' % (value)
    417417                    continue
    418418                datastructure['results'] = res
     
    444444        if not valid or not value:
    445445            err = 'Invalid id string %s.' % value
    446             logger.info('%s invalid id string' % value)
     446            logger.info('Invalid id string %s' % value)
    447447            datastructure['student'] = None
    448448        else:
     
    450450            res = s_cat(id = value)
    451451            if not res:
    452                 logger.info('%s id not found' % value)
    453                 err = 'No Student with StudentId %s.' % (value)
     452                logger.info('Student id %s not found' % value)
     453                err = 'No student with id %s.' % (value)
    454454                datastructure['student'] = None
    455455            else:
     
    721721        elif len(b) > 1 and b.find('-') > -1:
    722722            do = 0
    723             err = 'PIN must not contain the "-"'
    724             s_logger.info('"%s","Invalid PIN-Number, contains -"' % (s_id))
     723            err = 'PIN must not contain "-"'
     724            s_logger.info('%s entered invalid PIN  containing "-"' % (s_id))
    725725        elif n.find('-') > -1:
    726726            do = 0
    727             err = 'PIN must not contain the "-"'
    728             s_logger.info('"%s","Invalid PIN-Number, contains -"' % (s_id))
     727            err = 'PIN must not contain "-"'
     728            s_logger.info('%s entered invalid PIN  containing "-"' % (s_id))
    729729        elif len(n) != 10:
    730730            do = 0
    731             err = 'invalid PIN length %d' % len(n)
    732             s_logger.info('%s invalid PIN length %d' % (s_id,len(n)))
     731            err = 'Invalid PIN length %d' % len(n)
     732            s_logger.info('%s entered invalid PIN with length %d' % (s_id,len(n)))
    733733        elif self.reference == "":
    734734            ref = s_id
     
    762762                    if self.reference == "jamb_reg_no":
    763763                        err = "You are already logged in."
    764                         s_logger.info('%s/%s checked admission though logged in %s' % (s_id,ref,pin_str))
     764                        s_logger.info('%s/%s checked admission with PIN %s though logged in' % (s_id,ref,pin_str))
    765765                        break
    766766                    if ok == 1:
Note: See TracChangeset for help on using the changeset viewer.