1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
/*-------------------------------------------------------------------------
*
* pgauditlogtofile.c
* pgaudit addon to redirect audit log lines to an independent file
*
* Copyright (c) 2020-2023, Francisco Miguel Biete Banon
* Copyright (c) 2014, 2ndQuadrant Ltd.
*
* This code is released under the PostgreSQL licence, as given at
* http://www.postgresql.org/about/licence/
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "utils/guc.h"
PG_MODULE_MAGIC;
#include "logtofile.h"
|