Commit 6a83c3a57d1dc17b68631399102736ad4e4645a7
1 parent
14de9e24
Exists in
master
and in
17 other branches
Added logging behind env var [skip ci]
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
test/support/cequel.rb
... | ... | @@ -5,7 +5,7 @@ cequel = |
5 | 5 | keyspace: "searchkick_test", |
6 | 6 | default_consistency: :all |
7 | 7 | ) |
8 | -# cequel.logger = ActiveSupport::Logger.new(STDOUT) | |
8 | +cequel.logger = ActiveSupport::Logger.new(STDOUT) if ENV["VERBOSE"] | |
9 | 9 | cequel.schema.drop! if cequel.schema.exists? |
10 | 10 | cequel.schema.create! |
11 | 11 | Cequel::Record.connection = cequel | ... | ... |