]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE14-ptserver-procs-loglevels-20090603
authorAndrew Deason <adeason@sinenomine.net>
Wed, 3 Jun 2009 22:49:17 +0000 (22:49 +0000)
committerDerrick Brashear <shadow@dementia.org>
Wed, 3 Jun 2009 22:49:17 +0000 (22:49 +0000)
LICENSE IPL10
FIXES 124894

make loglevels for create/delete match those for other pts operations

(cherry picked from commit d9d50fea986569dfaa3c3b6aee2e8c99f0d280e8)

src/ptserver/ptprocs.c

index 1785b202171d742196722395a1057425c45951b7..44ec910029f8d79088518b5bd291ae36dd442254 100644 (file)
@@ -215,7 +215,7 @@ SPR_INewEntry(call, aname, aid, 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;
 }
 
@@ -295,7 +295,7 @@ SPR_NewEntry(call, aname, flag, oid, aid)
     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;
 }
 
@@ -746,7 +746,7 @@ SPR_Delete(call, 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;
 }