From 7d410c72863fc8f9d11e26b7847a68bd9d5c1af9 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Wed, 3 Jun 2009 22:49:17 +0000 Subject: [PATCH] STABLE14-ptserver-procs-loglevels-20090603 LICENSE IPL10 FIXES 124894 make loglevels for create/delete match those for other pts operations (cherry picked from commit d9d50fea986569dfaa3c3b6aee2e8c99f0d280e8) --- src/ptserver/ptprocs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ptserver/ptprocs.c b/src/ptserver/ptprocs.c index 1785b2021..44ec91002 100644 --- a/src/ptserver/ptprocs.c +++ b/src/ptserver/ptprocs.c @@ -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; } -- 2.39.5