aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp/api/plat
diff options
context:
space:
mode:
authorJere Leppänen <jere.leppanen@nokia.com>2023-04-06 10:25:39 +0300
committerMatias Elo <matias.elo@nokia.com>2023-04-06 13:49:34 +0300
commit6820f5d8122268fd65fb031ecb217f1403bcf8a9 (patch)
tree76a301586de73f06061ec990d3db3f66e168ddd5 /platform/linux-generic/include/odp/api/plat
parentb7d63c073373ac0049d4266a375a7c15e595f7ad (diff)
linux-gen, helper: debug: add a space in logs after line information
To improve readability of logs, add a space after the file, line and function information. Signed-off-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Tuomas Taipale <tuomas.taipale@nokia.com>
Diffstat (limited to 'platform/linux-generic/include/odp/api/plat')
-rw-r--r--platform/linux-generic/include/odp/api/plat/debug_inlines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linux-generic/include/odp/api/plat/debug_inlines.h b/platform/linux-generic/include/odp/api/plat/debug_inlines.h
index d771feb0f..41af3dca4 100644
--- a/platform/linux-generic/include/odp/api/plat/debug_inlines.h
+++ b/platform/linux-generic/include/odp/api/plat/debug_inlines.h
@@ -51,7 +51,7 @@ extern odp_abort_func_t _odp_abort_fn;
* ODP LOG macro.
*/
#define _ODP_LOG(level, fmt, ...) \
- _ODP_LOG_FN(level, "%s:%d:%s():" fmt, __FILE__, \
+ _ODP_LOG_FN(level, "%s:%d:%s(): " fmt, __FILE__, \
__LINE__, __func__, ##__VA_ARGS__)
/**