print_log_module
Descripción
Devuelve el módulo de logs en formato XML.
Parámetros
nombre |
tipo
|
descripción |
module
|
dict
|
Módulo en formato dict |
print_flag
|
bool
|
Si se utiliza muestra el XML de los módulos en STDOUT |
Return
tipo | descripción |
str | Módulo en formato XML |
Versión
- 1.0.0
Ejemplo
import pandoraPlugintools as pt
# Define log module data
log_module_data = {
"source": "System",
"value": "The host is not accessible",
}
# Print the log module in XML format
log_module_xml = pt.modules.print_log_module(log_module_data, print_flag=True)
# Print the generated log module XML
print("Log Module XML:\n", log_module_xml)