Update Log
authorSung-jae Park <nicesj.park@samsung.com>
Thu, 27 Jun 2013 04:34:54 +0000 (13:34 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Thu, 27 Jun 2013 04:34:54 +0000 (13:34 +0900)
[model] Redwood
[binary_type] AP
[customer] Docomo/Orange/Open
[issue#] N/A
[problem] N/A
[cause] N/A
[solution] N/A
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: I200b21928f3acba3ea9500fd3ef2d848ee0032cb

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 */