get rid of excessive logging

This commit is contained in:
Eric House 2012-05-02 20:41:46 -07:00
parent 09f9038cff
commit 26913c5a37

View file

@ -111,10 +111,10 @@ stack_getHash( StackCtxt* stack )
XP_ASSERT( 0 ); XP_ASSERT( 0 );
} }
hash = augmentFor( hash, &entry ); hash = augmentFor( hash, &entry );
XP_LOGF( "hash after %d: %.8X", nn, (unsigned int)hash ); // XP_LOGF( "hash after %d: %.8X", nn, (unsigned int)hash );
} }
XP_ASSERT( 0 != hash ); XP_ASSERT( 0 != hash );
LOG_RETURNF( "%.8X", (unsigned int)hash ); // LOG_RETURNF( "%.8X", (unsigned int)hash );
return hash; return hash;
} }
#endif #endif