PyBase/Test.py

17 lines
397 B
Python
Raw Permalink Normal View History

2025-12-26 19:35:28 -05:00
# 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())
2026-02-07 15:50:34 -05:00
obj.LogCaution("HOLA")
2025-12-26 19:35:28 -05:00
if __name__ == "__main__":
main()