|
subroutine | logger::log_init (this) |
| Initialize a log. More...
|
|
subroutine | logger::log_begin (this) |
| Increase indention level. More...
|
|
subroutine | logger::log_end (this) |
| Decrease indention level. More...
|
|
subroutine | logger::log_indent (this) |
| Indent a log. More...
|
|
subroutine | logger::log_newline (this, lvl) |
| Write a new line to a log. More...
|
|
subroutine | logger::log_message (this, msg, lvl) |
| Write a message to a log. More...
|
|
subroutine | logger::log_header (this, version, build_info) |
| Write the Neko header to a log. More...
|
|
subroutine | logger::log_error (this, msg) |
| Write an error message to a log. More...
|
|
subroutine | logger::log_warning (this, msg) |
| Write a warning message to a log. More...
|
|
subroutine | logger::log_section (this, msg, lvl) |
| Begin a new log section. More...
|
|
subroutine | logger::log_end_section (this, msg, lvl) |
| End a log section. More...
|
|
subroutine | logger::log_status (this, t, T_end) |
| Write status banner. More...
|
|
subroutine | logger::log_message_c (c_msg) |
| Write a message to a log (from C) More...
|
|
subroutine | logger::log_error_c (c_msg) |
| Write an error message to a log (from C) More...
|
|
subroutine | logger::log_warning_c (c_msg) |
| Write a warning message to a log (from C) More...
|
|
subroutine | logger::log_section_c (c_msg) |
| Begin a new log section (from C) More...
|
|
subroutine | logger::log_end_section_c () |
| End a log section (from C) More...
|
|
|
integer, parameter, public | logger::log_size = 80 |
|
type(log_t), public | logger::neko_log |
| Global log stream. More...
|
|
integer, parameter, public | logger::neko_log_quiet = 0 |
| Always logged. More...
|
|
integer, parameter, public | logger::neko_log_info = 1 |
| Default log level. More...
|
|
integer, parameter, public | logger::neko_log_verbose = 2 |
| Verbose log level. More...
|
|
integer, parameter, public | logger::neko_log_debug = 10 |
| Debug log level. More...
|
|