Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
meinheld / meinheld / server / log.h
Size: Mime:
#ifndef LOG_H
#define LOG_H

#include "client.h"
#include "time_cache.h"

// int open_log_file(const char *path);

// int write_error_log(char *file_name, int line);

// int write_access_log(client_t *cli, int log_fd, const char *log_path);

int set_access_logger(PyObject *obj);
int set_err_logger(PyObject *obj);

int call_access_logger(PyObject *environ);
int call_error_logger(void);


#endif