mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-06 07:26:56 +00:00
1. Rename folder name with "_" 2. Category acrn_crashlog, acrn_log, acrn_trace into debug_tools folder and acrn_bridge, life_mngr, acrn_manager into services. Tracked-On: #5644 Signed-off-by: Xie, nanlin <nanlin.xie@intel.com>
43 lines
690 B
C
43 lines
690 B
C
/*
|
|
* Copyright (C) <2018> Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include "log_sys.h"
|
|
|
|
void debug_log(const int level, const char *func, const int line, ...)
|
|
{
|
|
va_list args;
|
|
char *fmt;
|
|
char *head;
|
|
char *msg;
|
|
|
|
if (level > LOG_LEVEL)
|
|
return;
|
|
|
|
va_start(args, line);
|
|
fmt = va_arg(args, char *);
|
|
if (!fmt) {
|
|
va_end(args);
|
|
return;
|
|
}
|
|
if (vasprintf(&msg, fmt, args) == -1) {
|
|
va_end(args);
|
|
return;
|
|
}
|
|
va_end(args);
|
|
|
|
if (asprintf(&head, "<%-20s%5d>: ", func, line) == -1) {
|
|
free(msg);
|
|
return;
|
|
}
|
|
|
|
sd_journal_print(level, "%s%s", head, msg);
|
|
free(msg);
|
|
free(head);
|
|
}
|