transceiver: update to log messages to work with P2.8

Log level changes in P2.8:

    ERROR     -> ERR
    WARN      -> WARNING
    DEEPDEBUG -> DEBUG

Signed-off-by: Thomas Tsou <ttsou@vt.edu>

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2683 19bc5d8c-e614-43d4-8b26-e1612bc8e597
diff --git a/Transceiver52M/radioIOResamp.cpp b/Transceiver52M/radioIOResamp.cpp
index 134576c..3918068 100644
--- a/Transceiver52M/radioIOResamp.cpp
+++ b/Transceiver52M/radioIOResamp.cpp
@@ -273,7 +273,7 @@
 	num_rd = mRadio->readSamples(rx_buf, OUTCHUNK, &overrun,
 				     readTimestamp, &local_underrun);
 
-	LOG(DEEPDEBUG) << "Rx read " << num_rd << " samples from device";
+	LOG(DEBUG) << "Rx read " << num_rd << " samples from device";
 	assert(num_rd == OUTCHUNK);
 
 	underrun |= local_underrun;
@@ -283,7 +283,7 @@
 	num_cv = rx_resmpl_int_flt(rcvBuffer + 2 * rcvCursor,
 				   rx_buf, num_rd);
 
-	LOG(DEEPDEBUG) << "Rx read " << num_cv << " samples from resampler";
+	LOG(DEBUG) << "Rx read " << num_cv << " samples from resampler";
 
 	rcvCursor += num_cv;
 }
@@ -296,7 +296,7 @@
 	if (sendCursor < INCHUNK)
 		return;
 
-	LOG(DEEPDEBUG) << "Tx wrote " << sendCursor << " samples to resampler";
+	LOG(DEBUG) << "Tx wrote " << sendCursor << " samples to resampler";
 
 	/* Resample and convert */
 	num_cv = tx_resmpl_flt_int(tx_buf, sendBuffer, sendCursor);
@@ -308,7 +308,7 @@
 				      &underrun,
 				      writeTimestamp);
 
-	LOG(DEEPDEBUG) << "Tx wrote " << num_wr << " samples to device";
+	LOG(DEBUG) << "Tx wrote " << num_wr << " samples to device";
 	assert(num_wr == num_wr);
 
 	writeTimestamp += (TIMESTAMP) num_wr;