error_h
Decodes and formats an error message from the provided format string and arguments, then logs the resulting message using the logger at the error level.
def error_h(
fmt: bytes,
lst: bytes
) - > null
Formats and logs a GEOS error message by applying a list of arguments to a format string.
Parameters
| Name | Type | Description |
|---|---|---|
| fmt | bytes | A byte string containing the format template for the error message. |
| lst | bytes | A byte string containing the arguments to be interpolated into the format template. |
Returns
| Type | Description |
|---|---|
null | Nothing is returned; the formatted message is sent to the system logger. |