From: Andrew Deason Date: Wed, 3 Jun 2009 22:48:55 +0000 (+0000) Subject: ptserver-procs-loglevels-20090603 X-Git-Tag: openafs-devel-1_5_61~258 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d9d50fea986569dfaa3c3b6aee2e8c99f0d280e8;p=packages%2Fo%2Fopenafs.git ptserver-procs-loglevels-20090603 LICENSE IPL10 FIXES 124894 make loglevels for create/delete match those for other pts operations --- diff --git a/src/ptserver/ptprocs.c b/src/ptserver/ptprocs.c index ded3877bf..4c4e09958 100644 --- a/src/ptserver/ptprocs.c +++ b/src/ptserver/ptprocs.c @@ -249,7 +249,7 @@ SPR_INewEntry(struct rx_call *call, char aname[], afs_int32 aid, afs_int32 oid) code = iNewEntry(call, aname, aid, oid, &cid); osi_auditU(call, PTS_INewEntEvent, code, AUD_ID, aid, AUD_STR, aname, AUD_ID, oid, AUD_END); - ViceLog(25, ("PTS_INewEntry: code %d cid %d aid %d aname %s oid %d\n", code, cid, aid, aname, oid)); + ViceLog(5, ("PTS_INewEntry: code %d cid %d aid %d aname %s oid %d\n", code, cid, aid, aname, oid)); return code; } @@ -321,7 +321,7 @@ SPR_NewEntry(struct rx_call *call, char aname[], afs_int32 flag, afs_int32 oid, code = newEntry(call, aname, flag, oid, aid, &cid); osi_auditU(call, PTS_NewEntEvent, code, AUD_ID, *aid, AUD_STR, aname, AUD_ID, oid, AUD_END); - ViceLog(25, ("PTS_NewEntry: code %d cid %d aid %d aname %s oid %d\n", code, cid, *aid, aname, oid)); + ViceLog(5, ("PTS_NewEntry: code %d cid %d aid %d aname %s oid %d\n", code, cid, *aid, aname, oid)); return code; } @@ -741,7 +741,7 @@ SPR_Delete(struct rx_call *call, afs_int32 aid) code = Delete(call, aid, &cid); osi_auditU(call, PTS_DelEvent, code, AUD_ID, aid, AUD_END); - ViceLog(25, ("PTS_Delete: code %d cid %d aid %d\n", code, cid, aid)); + ViceLog(5, ("PTS_Delete: code %d cid %d aid %d\n", code, cid, aid)); return code; }