[sr-dev] git:5.3:d415780f: core: dprint - reformatted log macros for better readability

Daniel-Constantin Mierla miconda at gmail.com
Wed Jan 22 09:54:22 CET 2020


Module: kamailio
Branch: 5.3
Commit: d415780fef56536d88f5f3d7d044d9a64a74c4c5
URL: https://github.com/kamailio/kamailio/commit/d415780fef56536d88f5f3d7d044d9a64a74c4c5

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2020-01-22T09:43:11+01:00

core: dprint - reformatted log macros for better readability

(cherry picked from commit ae23876b3091db2e62f651e05fa695d29f540028)

---

Modified: src/core/dprint.h

---

Diff:  https://github.com/kamailio/kamailio/commit/d415780fef56536d88f5f3d7d044d9a64a74c4c5.diff
Patch: https://github.com/kamailio/kamailio/commit/d415780fef56536d88f5f3d7d044d9a64a74c4c5.patch

---

diff --git a/src/core/dprint.h b/src/core/dprint.h
index 255976985e..275671b447 100644
--- a/src/core/dprint.h
+++ b/src/core/dprint.h
@@ -259,33 +259,35 @@ void log_prefix_init(void);
 			} while(0)
 
 #		define LOG_(facility, level, ...) \
-	LOG__(facility, level, NULL, __VA_ARGS__, NULL)
+			LOG__(facility, level, NULL, __VA_ARGS__, NULL)
 
 #		ifdef LOG_FUNC_NAME
 #			define LOG(level, ...) \
 				_LOG(level, __VA_ARGS__, NULL)
 #			define _LOG(level, fmt, ...) \
-	LOG_(DEFAULT_FACILITY, (level), LOC_INFO, "%s(): " fmt,\
-				_FUNC_NAME_, __VA_ARGS__)
+				LOG_(DEFAULT_FACILITY, (level), LOC_INFO, "%s(): " fmt,\
+					_FUNC_NAME_, __VA_ARGS__)
 
 #			define LOG_FC(facility, level, ...) \
 				_LOG_FC(facility, level, __VA_ARGS__, NULL)
 #			define _LOG_FC(facility, level, fmt, ...) \
-	LOG_((facility), (level), LOC_INFO, "%s(): " fmt , _FUNC_NAME_, __VA_ARGS__)
+				LOG_((facility), (level), LOC_INFO, "%s(): " fmt ,\
+						_FUNC_NAME_, __VA_ARGS__)
 
 #			define LOG_LN(level, lname, ...) \
 				_LOG_LN(level, lname, __VA_ARGS__, NULL)
 #			define _LOG_LN(level, lname, fmt, ...) \
-	LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, "%s(): " fmt,\
-				_FUNC_NAME_, __VA_ARGS__)
+				LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, "%s(): " fmt,\
+						_FUNC_NAME_, __VA_ARGS__)
 
 #		else /* LOG_FUNC_NAME */
 #			define LOG(level, ...) \
-	LOG_(DEFAULT_FACILITY, (level), LOC_INFO, __VA_ARGS__, NULL)
+				LOG_(DEFAULT_FACILITY, (level), LOC_INFO, __VA_ARGS__, NULL)
 #			define LOG_FC(facility, level, ...) \
-	LOG_((facility), (level), LOC_INFO, __VA_ARGS__, NULL)
+				LOG_((facility), (level), LOC_INFO, __VA_ARGS__, NULL)
 #			define LOG_LN(level, lname, ...) \
-	LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, __VA_ARGS__, NULL)
+				LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO,\
+						__VA_ARGS__, NULL)
 
 #		endif /* LOG_FUNC_NAME */
 
@@ -337,27 +339,28 @@ void log_prefix_init(void);
 			} while(0)
 
 #		define LOG_(facility, level, prefix, fmt, args...) \
-	LOG__(facility, level, NULL, prefix, fmt, ## args)
+			LOG__(facility, level, NULL, prefix, fmt, ## args)
 
 #		ifdef LOG_FUNC_NAME
 #			define LOG(level, fmt, args...) \
-	LOG_(DEFAULT_FACILITY, (level), LOC_INFO, "%s(): " fmt ,\
-			_FUNC_NAME_, ## args)
+				LOG_(DEFAULT_FACILITY, (level), LOC_INFO, "%s(): " fmt ,\
+						_FUNC_NAME_, ## args)
 
 #			define LOG_FC(facility, level, fmt, args...) \
-	LOG_((facility), (level), LOC_INFO, "%s(): " fmt , _FUNC_NAME_, ## args)
+				LOG_((facility), (level), LOC_INFO, "%s(): " fmt ,\
+						_FUNC_NAME_, ## args)
 
 #			define LOG_LN(level, lname, fmt, args...) \
-	LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, "%s(): " fmt ,\
-			_FUNC_NAME_, ## args)
+				LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, "%s(): " fmt ,\
+						_FUNC_NAME_, ## args)
 
 #		else /* LOG_FUNC_NAME */
 #			define LOG(level, fmt, args...) \
-	LOG_(DEFAULT_FACILITY, (level), LOC_INFO, fmt , ## args)
+				LOG_(DEFAULT_FACILITY, (level), LOC_INFO, fmt , ## args)
 #			define LOG_FC(facility, level, fmt, args...) \
-	LOG_((facility), (level), LOC_INFO, fmt , ## args)
+				LOG_((facility), (level), LOC_INFO, fmt , ## args)
 #			define LOG_LN(level, lname, fmt, args...) \
-	LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, fmt , ## args)
+				LOG__(DEFAULT_FACILITY, (level), (lname), LOC_INFO, fmt , ## args)
 
 #		endif /* LOG_FUNC_NAME */
 #	endif /* __SUNPRO_C */




More information about the sr-dev mailing list