Update LOGD, FILE/LINE/FUNC delete from log
authorSung-jae Park <nicesj.park@samsung.com>
Thu, 27 Jun 2013 04:28:49 +0000 (13:28 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Thu, 27 Jun 2013 04:28:49 +0000 (13:28 +0900)
[model] Redwood
[binary_type] AP
[customer] Docomo/Ornage/Open
[issue#] N/A
[problem] Duplicated log string
[cause] DLOG prints FILE/FUNC/LINE.
[solution] Delete duplicated string.
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: I5016126f5eb1632a3d0b2d662aa025c27e61b4a0

include/debug.h

index 54a63b2..d278fc4 100644 (file)
@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 
-#define DbgPrint(format, arg...)       SECURE_LOGD("[\e[32m%s/%s\e[0m:%d] " format, basename(__FILE__), __func__, __LINE__, ##arg)
-#define ErrPrint(format, arg...)       SECURE_LOGE("[\e[32m%s/%s\e[0m:%d] " format, basename(__FILE__), __func__, __LINE__, ##arg)
+#define DbgPrint(format, arg...)       SECURE_LOGD(format, ##arg)
+#define ErrPrint(format, arg...)       SECURE_LOGE(format, ##arg)
+#define WarnPrint(format, arg...)      SECURE_LOGW(format, ##arg)
 /* End of a file */