1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
require 'paint'
module LeapCli
extend self
def log_level
@log_level ||= 1
end
def log_level=(value)
@log_level = value
end
def indent_level
@indent_level ||= 0
end
def indent_level=(value)
@indent_level = value
end
end
##
## LOGGING
##
#
# these are log titles typically associated with files
#
FILE_TITLES = [:updated, :created, :removed, :missing, :nochange, :loading]
#
# master logging function.
#
# arguments can be a String, Integer, Symbol, or Hash, in any order.
#
# * String: treated as the message to log.
# * Integer: the log level (0, 1, 2)
# * Symbol: the prefix title to colorize. may be one of
# [:error, :warning, :info, :updated, :created, :removed, :no_change, :missing]
# * Hash: a hash of options. so far, only :indent is supported.
#
def log(*args)
level = args.grep(Integer).first || 1
title = args.grep(Symbol).first
message = args.grep(String).first
options = args.grep(Hash).first || {}
options[:indent] ||= LeapCli.indent_level
if message && LeapCli.log_level >= level
print " " * (options[:indent]+1)
if options[:indent] > 0
print '- '
else
print '= '
end
if title
prefix = case title
when :error then Paint['error', :red, :bold]
when :warning then Paint['warning', :yellow, :bold]
when :info then Paint['info', :cyan, :bold]
when :updated then Paint['updated', :cyan, :bold]
when :updating then Paint['updating', :cyan, :bold]
when :created then Paint['created', :green, :bold]
when :removed then Paint['removed', :red, :bold]
when :nochange then Paint['no change', :magenta]
when :loading then Paint['loading', :magenta]
when :missing then Paint['missing', :yellow, :bold]
when :run then Paint['run', :magenta]
when :failed then Paint['FAILED', :red, :bold]
when :ran then Paint['ran', :green, :bold]
when :bail then Paint['bailing out', :red, :bold]
else Paint[title.to_s, :cyan, :bold]
end
print "#{prefix} "
if FILE_TITLES.include?(title) && message =~ /^\//
message = LeapCli::Path.relative_path(message)
end
end
puts "#{message}"
if block_given?
LeapCli.indent_level += 1
yield
LeapCli.indent_level -= 1
end
end
end
|