Changed loggin to level 6 (from 5)

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@108 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjlib/src/pj/hash.c b/pjlib/src/pj/hash.c
index 28d6d0f..739f275 100644
--- a/pjlib/src/pj/hash.c
+++ b/pjlib/src/pj/hash.c
@@ -91,7 +91,7 @@
     h = pj_pool_alloc(pool, sizeof(pj_hash_table_t));
     h->count = 0;
 
-    PJ_LOG( 5, ("hashtbl", "hash table %p created from pool %s", h, pj_pool_getobjname(pool)));
+    PJ_LOG( 6, ("hashtbl", "hash table %p created from pool %s", h, pj_pool_getobjname(pool)));
 
     /* size must be 2^n - 1.
        round-up the size to this rule, except when size is 2^n, then size
@@ -147,7 +147,7 @@
 
     /* create a new entry */
     entry = pj_pool_alloc(pool, sizeof(pj_hash_entry));
-    PJ_LOG(5, ("hashtbl", "%p: New p_entry %p created, pool used=%u, cap=%u", ht, entry, 
+    PJ_LOG(6, ("hashtbl", "%p: New p_entry %p created, pool used=%u, cap=%u", ht, entry, 
 			  pj_pool_get_used_size(pool), pj_pool_get_capacity(pool)));
     entry->next = NULL;
     entry->hash = hash;
@@ -179,14 +179,14 @@
     if (*p_entry) {
 	if (value == NULL) {
 	    /* delete entry */
-	    PJ_LOG(5, ("hashtbl", "%p: p_entry %p deleted", ht, *p_entry));
+	    PJ_LOG(6, ("hashtbl", "%p: p_entry %p deleted", ht, *p_entry));
 	    *p_entry = (*p_entry)->next;
 	    --ht->count;
 	    
 	} else {
 	    /* overwrite */
 	    (*p_entry)->value = value;
-	    PJ_LOG(5, ("hashtbl", "%p: p_entry %p value set to %p", ht, *p_entry, value));
+	    PJ_LOG(6, ("hashtbl", "%p: p_entry %p value set to %p", ht, *p_entry, value));
 	}
     }
 }