blob: a0cf67fcf13e41064f10838e4b155f2ea6858102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Copyright (c) 2019 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "ioloop.h"
#include "str.h"
#include "event-exporter.h"
void event_export_transport_log(const struct exporter *exporter ATTR_UNUSED,
const buffer_t *buf)
{
i_info("%.*s", (int)buf->used, (const char *)buf->data);
}
|