summaryrefslogtreecommitdiffstats
path: root/lib/gs-debug.h
blob: d927f816d55c05af79ccbe84be8183702fcd20e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 * vi:set noexpandtab tabstop=8 shiftwidth=8:
 *
 * Copyright (C) 2016 Richard Hughes <richard@hughsie.com>
 *
 * SPDX-License-Identifier: GPL-2.0+
 */

#pragma once

#include <glib.h>
#include <glib-object.h>

G_BEGIN_DECLS

#define GS_TYPE_DEBUG (gs_debug_get_type ())

G_DECLARE_FINAL_TYPE (GsDebug, gs_debug, GS, DEBUG, GObject)

GsDebug		*gs_debug_new		(gchar		**domains,
					 gboolean	  verbose,
					 gboolean	  use_time);
GsDebug		*gs_debug_new_from_environment	(void);
void		 gs_debug_set_verbose	(GsDebug	*self,
					 gboolean	 verbose);

G_END_DECLS