Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add lograge to improve logging #5423

Merged
merged 13 commits into from
Apr 7, 2023
Prev Previous commit
Next Next commit
Merge branch 'develop' into feat/add_lograge
# Conflicts:
#	Gemfile
#	Gemfile.lock
  • Loading branch information
sojan-official committed Apr 7, 2023
commit 57fe05d34f3016e52c1325fed1fe5ff5673d242e
21 changes: 17 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,22 @@ gem 'net-imap', require: false
gem 'net-pop', require: false
gem 'net-smtp', require: false

group :production, :staging do
gem 'lograge', '~> 0.12.0'

# worked with microsoft refresh token
gem 'omniauth-oauth2'

gem 'audited', '~> 5.2'

# need for google auth
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 1.0'

### Gems required only in specific deployment environments ###
##############################################################

group :production do
# we dont want request timing out in development while using byebug
gem 'rack-timeout'
end
Expand Down Expand Up @@ -205,6 +220,4 @@ group :development, :test do
gem 'simplecov', '0.17.1', require: false
gem 'spring'
gem 'spring-watcher-listen'
end

gem 'lograge', '~> 0.12.0'
end
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ GEM
activesupport (>= 4)
railties (>= 4)
request_store (~> 1.0)
loofah (2.18.0)
loofah (2.19.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.8.1)
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.