File: logging.h

package info (click to toggle)
pipexec 2.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 2,632 kB
  • sloc: sh: 11,616; ansic: 861; makefile: 17
file content (14 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PIPEXEC_LOGGING_H
#define PIPEXEC_LOGGING_H

/*
 * Logging
 *
 * The logging system writes its output to a given fd.
 */

void logging_set_global_log_fd(int fd);
void logging_set_global_use_syslog();
void logging(char const * fmt, ...);

#endif