blob: 2e185dbc0fd13a56e8d579b5aa8a8abd83277604 [file] [log] [blame]
Eric Carusoea9f10e2019-05-01 09:52:01 -07001// Copyright 2019 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// This sets up the default glib logger so it logs with the libchrome
6// logger instead.
7
8#ifndef GLIB_BRIDGE_GLIB_LOGGER_H_
9#define GLIB_BRIDGE_GLIB_LOGGER_H_
10
11#include <string>
12
Eric Caruso353af302020-10-12 11:44:25 -070013#include "glib-bridge/glib_bridge_export.h"
14
Eric Carusoea9f10e2019-05-01 09:52:01 -070015namespace glib_bridge {
16
Eric Caruso353af302020-10-12 11:44:25 -070017GLIB_BRIDGE_EXPORT void ForwardLogs();
Eric Carusoea9f10e2019-05-01 09:52:01 -070018
19} // namespace glib_bridge
20
21#endif // GLIB_BRIDGE_GLIB_LOGGER_H_