Skip to main content

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

NameTypeDescription
fmtbytesA byte string containing the format template for the error message.
lstbytesA byte string containing the arguments to be interpolated into the format template.

Returns

TypeDescription
nullNothing is returned; the formatted message is sent to the system logger.