class Raykit::Log

def get_command_time(command)

def get_command_time(command)
    if(self.has_key?("command_times"))
        command_times = self["command_times"]
        if(command_times.has_key?(command))
            return DateTime.parse(command_times[command])
        end
    end
    nil
end