|
| procedure, pass(this) | init (this, env_prefix) |
| | Initialize a log.
|
| |
| procedure, pass(this) | free (this) |
| | Free a log.
|
| |
| procedure, pass(this) | begin (this) |
| | Increase indention level.
|
| |
| procedure, pass(this) | end (this) |
| | Decrease indention level.
|
| |
| procedure, pass(this) | indent (this) |
| | Indent a log.
|
| |
| procedure, pass(this) | newline (this, lvl) |
| | Write a new line to a log.
|
| |
| procedure, pass(this) | message (this, msg, lvl) |
| | Write a message to a log.
|
| |
| procedure, pass(this) | section (this, msg, lvl) |
| | Begin a new log section.
|
| |
| procedure, pass(this) | header (this, version, build_info) |
| | Write the Neko header to a log.
|
| |
| procedure, pass(this) | error (this, msg) |
| | Write an error message to a log.
|
| |
| procedure, pass(this) | warning (this, msg) |
| | Write a warning message to a log.
|
| |
| procedure, pass(this) | deprecated (this, feature, removal_version, extra_info) |
| | Write a deprecation warning to a log.
|
| |
| procedure, pass(this) | end_section (this, msg, lvl) |
| | End a log section.
|
| |
| procedure, pass(this) | flush (this) |
| | Flush the log stream, ensuring buffered output leaves the process.
|
| |
Definition at line 58 of file log.f90.