NeoMutt  2025-09-05-55-g97fc89
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mutt_logging.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_MUTT_LOGGING_H
24#define MUTT_MUTT_LOGGING_H
25
26#include <stdbool.h>
27#include <stdint.h>
28#include <time.h>
29#include "mutt/lib.h"
30
31struct ConfigDef;
32
33int log_disp_curses(time_t stamp, const char *file, int line, const char *function, enum LogLevel level, const char *format, ...)
34 __attribute__((__format__(__printf__, 6, 7)));
35
36void mutt_log_prep(void);
37int mutt_log_start(void);
38void mutt_log_stop(void);
39int mutt_log_set_level(enum LogLevel level, bool verbose);
40int mutt_log_set_file(const char *file);
41
42int main_log_observer(struct NotifyCallback *nc);
43int level_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
44
45void mutt_clear_error(void);
46
47#endif /* MUTT_MUTT_LOGGING_H */
int level_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "debug_level" config variable - Implements ConfigDef::validator() -.
int main_log_observer(struct NotifyCallback *nc)
Notification that a Config Variable has changed - Implements observer_t -.
LogLevel
Names for the Logging Levels.
Definition logging2.h:39
Convenience wrapper for the library headers.
int mutt_log_set_level(enum LogLevel level, bool verbose)
Change the logging level.
int mutt_log_set_file(const char *file)
Change the logging file.
void mutt_log_stop(void)
Close the log file.
int mutt_log_start(void)
Enable file logging.
void mutt_log_prep(void)
Prepare to log.
void mutt_clear_error(void)
Clear the message line (bottom line of screen)
int log_disp_curses(time_t stamp, const char *file, int line, const char *function, enum LogLevel level, const char *format,...) __attribute__((__format__(__printf__
String manipulation buffer.
Definition buffer.h:36
Data passed to a notification function.
Definition observer.h:34