notice_h
Decodes and formats a message string with provided arguments, then logs the resulting message as a warning with a GEOS_NOTICE prefix.
def notice_h(
fmt: bytes,
lst: bytes
) - > null
Logs a formatted GEOS notice message to the system logger at the warning level.
Parameters
| Name | Type | Description |
|---|---|---|
| fmt | bytes | A byte string containing the format template for the warning message. |
| lst | bytes | A byte string containing the data to be interpolated into the format template. |
Returns
| Type | Description |
|---|---|
null | Nothing is returned; the function performs a logging side effect. |