[#BloombergLP-bsls-LogSeverity-toAscii] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::xref:BloombergLP/bsls/LogSeverity.adoc[LogSeverity]::toAscii :relfileprefix: ../../../ :mrdocs: Return the string representation of the specified enumerator `value`. == Synopsis Declared in `<bsls_logseverity.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static char const* toAscii(xref:BloombergLP/bsls/LogSeverity/Enum.adoc[LogSeverity::Enum] value); ---- == Description Return the non‐modifiable string representation corresponding to the specified enumeration `value`, if it exists, and a unique (error) string otherwise. The string representation of `value` matches its corresponding enumerator name with the "e_" prefix elided. For example: ` bsl::cout << LogSeverity::toAscii(LogSeverity::e_DEBUG); ` will print the following on standard output: ` DEBUG ` Note that specifying a `value` that does not match any of the enumerators will result in a string representation that is distinct from any of those corresponding to the enumerators, but is otherwise unspecified. == Return Value string representation of `value` with the "e_" prefix elided == Parameters [cols="1,4"] |=== | Name| Description | *value* | logging severity enumerator to convert |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#