Changeset 41:0c8ee8fcfd76 in documentViewer


Ignore:
Timestamp:
Jul 6, 2006, 4:01:42 PM (18 years ago)
Author:
casties
Branch:
default
Message:

some more logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • documentViewer.py

    r40 r41  
    143143        """returns if access to the resource is granted"""
    144144        access = docinfo.get('accessType', None)
     145        zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "access type %s"%access)
    145146        if access is None:
    146147            # no information - no access
     
    148149            return True
    149150        elif access == 'free':
     151            zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "access is free")
    150152            return True
    151153        elif access in self.authgroups:
Note: See TracChangeset for help on using the changeset viewer.