Files
infinsweeper/logman.rb
2025-06-22 15:47:32 +03:00

11 lines
227 B
Ruby

# 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