# 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()