]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_eal/windows/eal_log.c
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_eal / windows / eal_log.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017-2018 Intel Corporation
3 */
4
5 #include "eal_private.h"
6
7 /* set the log to default function, called during eal init process. */
8 int
9 rte_eal_log_init(__rte_unused const char *id, __rte_unused int facility)
10 {
11 rte_openlog_stream(stderr);
12
13 eal_log_set_default(stderr);
14
15 return 0;
16 }