Using explicit newlines ('\n') in a logging messages breaks the
logging output and makes it unnecessarily harder to read and parse the
LTTng daemons' logs.
Moreover, it is unnecessary to escape multi-line string literals.
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
/* No output path defined */
const char *home_dir = utils_get_home_dir();
if (!home_dir) {
- ERR("Home path not found.\n \
- Please specify an output path using -o, --output PATH");
+ ERR("Home path not found."
+ " Please specify an output path using -o, --output PATH");
ret = -1;
goto end;
}