File: console.rb

package info (click to toggle)
ruby-console 1.15.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 360 kB
  • sloc: ruby: 1,776; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

# Increase the verbosity of the logger to info.
def info
	require_relative '../lib/console'
	
	Console.logger.info!
end

# Increase the verbosity of the logger to debug.
def debug
	require_relative '../lib/console'
	
	Console.logger.debug!
end