Skip to content

Commit

Permalink
Revert "HBASE-26854 Shell startup logs a bunch of noise (apache#4469)"
Browse files Browse the repository at this point in the history
This reverts commit de9776d.
  • Loading branch information
wenwj0 authored Jun 14, 2022
1 parent b18c15e commit 92b193f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions hbase-shell/src/main/ruby/jar-bootstrap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def add_to_configuration(c, arg)
opts.ordering = GetoptLong::REQUIRE_ORDER

script2run = nil
log_level = org.apache.logging.log4j.Level::ERROR
log_level = org.apache.log4j.Level::ERROR
@shell_debug = false
interactive = true
full_backtrace = false
Expand All @@ -118,7 +118,7 @@ def add_to_configuration(c, arg)
when D_ARG
conf_from_cli = add_to_configuration(conf_from_cli, arg)
when '--debug'
log_level = org.apache.logging.log4j.Level::DEBUG
log_level = org.apache.log4j.Level::DEBUG
full_backtrace = true
@shell_debug = true
puts 'Setting DEBUG log level...'
Expand All @@ -138,8 +138,8 @@ def add_to_configuration(c, arg)
ARGV.unshift('-d') if @shell_debug

# Set logging level to avoid verboseness
org.apache.logging.log4j.core.config.Configurator.setAllLevels('org.apache.zookeeper', log_level)
org.apache.logging.log4j.core.config.Configurator.setAllLevels('org.apache.hadoop', log_level)
org.apache.log4j.Logger.getLogger('org.apache.zookeeper').setLevel(log_level)
org.apache.log4j.Logger.getLogger('org.apache.hadoop.hbase').setLevel(log_level)

# Require HBase now after setting log levels
require 'hbase_constants'
Expand All @@ -165,14 +165,14 @@ def debug
if @shell_debug
@shell_debug = false
conf.back_trace_limit = 0
log_level = org.apache.logging.log4j.Level::ERROR
log_level = org.apache.log4j.Level::ERROR
else
@shell_debug = true
conf.back_trace_limit = 100
log_level = org.apache.logging.log4j.Level::DEBUG
log_level = org.apache.log4j.Level::DEBUG
end
org.apache.logging.log4j.core.config.Configurator.setAllLevels('org.apache.zookeeper', log_level)
org.apache.logging.log4j.core.config.Configurator.setAllLevels('org.apache.hadoop', log_level)
org.apache.log4j.Logger.getLogger('org.apache.zookeeper').setLevel(log_level)
org.apache.log4j.Logger.getLogger('org.apache.hadoop.hbase').setLevel(log_level)
debug?
end

Expand Down

0 comments on commit 92b193f

Please sign in to comment.