PyBase/Test.py
Nique_372 0500f8395a
2026-02-07 15:50:34 -05:00

17 lines
397 B
Python

# Copyright 2025, Niquel Mendoza.
# https://www.mql5.com/es/users/nique_372
# Test.py
from Utils import SimpleLogger
def main():
obj = SimpleLogger.CLoggerBase()
obj.EnableAllLogs()
obj.LogWarning("Advertencia")
obj.LogError("Error xd")
obj.LogInfo("Informacion")
print(obj.IsWarningLogEnabled())
obj.LogCaution("HOLA")
if __name__ == "__main__":
main()