# module for logging module Logman def self.log(log) File.write("log/main.log", "[#{Time.now}] #{log}\n", mode: "a") end def self.imp(log) File.write("log/imp.log", "[#{Time.now}] #{log}\n", mode: "a") end end