X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_test.c;h=3e05b906594df4057ae6ac6cfe9766c919b0f81a;hb=2e5bfef2c1708874507a51c9469b2c181b5523f4;hp=caf9af73bb15a6e8ef16f7c4eb9c832b99c79480;hpb=5629373d62f7a65f9bbef3a0b664cfc7ee598482;p=citadel.git diff --git a/citadel/serv_test.c b/citadel/serv_test.c index caf9af73b..3e05b9065 100644 --- a/citadel/serv_test.c +++ b/citadel/serv_test.c @@ -44,25 +44,25 @@ extern struct CitContext *ContextList; void CleanupTest(void) { - lprintf(9, "--- test of adding an unload hook --- \n"); + lprintf(CTDL_DEBUG, "--- test of adding an unload hook --- \n"); } void NewRoomTest(void) { - lprintf(9, "--- test module was told we're now in a new room ---\n"); + lprintf(CTDL_DEBUG, "--- test module was told we're now in a new room ---\n"); } void SessionStartTest(void) { - lprintf(9, "--- starting up session %d ---\n", + lprintf(CTDL_DEBUG, "--- starting up session %d ---\n", CC->cs_pid); } void SessionStopTest(void) { - lprintf(9, "--- ending session %d ---\n", + lprintf(CTDL_DEBUG, "--- ending session %d ---\n", CC->cs_pid); } void LoginTest(void) { - lprintf(9, "--- Hello, %s ---\n", CC->curr_user); + lprintf(CTDL_DEBUG, "--- Hello, %s ---\n", CC->curr_user); }