Code for the Advent of Code event
aoc advent-of-code
at rust 13 lines 244 B view raw
1# frozen_string_literal: true 2 3require 'ougai' 4 5module AoC 6 # Logger object used in AoC code, currently just an Ougai logger. 7 class Logger < Ougai::Logger 8 # Initializes the logger. 9 def initialize(*, **) 10 super 11 end 12 end 13end