Convert a real to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=single_k), | intent(in) | :: | val | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts a double to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=double_k), | intent(in) | :: | val | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts an integer to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=int_k), | intent(in) | :: | val | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts a long to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=long_k), | intent(in) | :: | val | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts a bool to a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| logical, | intent(in) | :: | val |
Converts a real "array" to a single string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=single_k), | intent(in) | :: | val(:) | array to convert |
||
| character(len=*), | intent(in) | :: | sep | seperator between array elements |
||
| type(tem_logging_type), | intent(in), | optional | :: | logger | logger type which provides output format |
output string
Converts an array of doubles to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=double_k), | intent(in) | :: | val(:) | |||
| character(len=*), | intent(in) | :: | sep | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts an array of integers to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=int_k), | intent(in) | :: | val(:) | array to convert |
||
| character(len=*), | intent(in) | :: | sep | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts an array of longs to a string according to the format provided in the logger.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=long_k), | intent(in) | :: | val(:) | |||
| character(len=*), | intent(in) | :: | sep | |||
| type(tem_logging_type), | intent(in), | optional | :: | logger |
Converts an array of booleans to a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| logical, | intent(in) | :: | val(:) | |||
| character(len=*), | intent(in) | :: | sep |