/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* * Copyright © 2017 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, see . */ #include "config.h" #include #include "goasouplogger.h" struct _GoaSoupLogger { SoupLogger parent_instance; }; G_DEFINE_TYPE (GoaSoupLogger, goa_soup_logger, SOUP_TYPE_LOGGER); /* ---------------------------------------------------------------------------------------------------- */ static void goa_soup_logger_printer (SoupLogger *logger, SoupLoggerLogLevel level, gchar direction, const gchar *data, gpointer user_data) { gchar *message; message = g_strdup_printf ("%c %s", direction, data); g_log_default_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, message, NULL); g_free (message); } /* ---------------------------------------------------------------------------------------------------- */ static void goa_soup_logger_init (GoaSoupLogger *self) { soup_logger_set_printer (SOUP_LOGGER (self), goa_soup_logger_printer, NULL, NULL); } static void goa_soup_logger_class_init (GoaSoupLoggerClass *klass) { } /* ---------------------------------------------------------------------------------------------------- */ SoupLogger * goa_soup_logger_new (SoupLoggerLogLevel level, gint max_body_size) { return g_object_new (GOA_TYPE_SOUP_LOGGER, "level", level, "max-body-size", max_body_size, NULL); }