File: console.rb

package info (click to toggle)
ruby-console 1.34.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 272 kB
  • sloc: ruby: 1,509; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 354 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2020-2024, by Samuel Williams.

# 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