Skip to content

Commit c018c6a

Browse files
committed
Update links
1 parent a6cf05d commit c018c6a

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Provide at least:
1111

1212
Note:
1313
* Issues reported here should be related to monkey patches applied to Rails to make it use Semantic Logger.
14-
* For other logging and appender related issues, please report the issue at [Semantic Logger](https://github.com/rocketjob/semantic_logger/issues.
14+
* For other logging and appender related issues, please report the issue at [Semantic Logger](https://github.com/reidmorrison/semantic_logger/issues.
1515

1616
### Expected Behavior
1717

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ jobs:
3333

3434
- rails: "6.1"
3535
ruby: "3.0"
36-
- rails: "6.1"
37-
ruby: jruby
3836

3937
env:
4038
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Rails Semantic Logger
2-
[![Gem Version](https://img.shields.io/gem/v/rails_semantic_logger.svg)](https://rubygems.org/gems/rails_semantic_logger) [![Build Status](https://travis-ci.org/rocketjob/rails_semantic_logger.svg?branch=master)](https://travis-ci.org/rocketjob/rails_semantic_logger) [![Downloads](https://img.shields.io/gem/dt/rails_semantic_logger.svg)](https://rubygems.org/gems/rails_semantic_logger) [![License](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache-2.0) ![](https://img.shields.io/badge/status-Production%20Ready-blue.svg) [![Gitter chat](https://img.shields.io/badge/IRC%20(gitter)-Support-brightgreen.svg)](https://gitter.im/rocketjob/support)
2+
[![Gem Version](https://img.shields.io/gem/v/rails_semantic_logger.svg)](https://rubygems.org/gems/rails_semantic_logger) [![Build Status](https://github.com/reidmorrison/rails_semantic_logger/workflows/build/badge.svg)](https://github.com/reidmorrison/rails_semantic_logger/actions?query=workflow%3Abuild) [![Downloads](https://img.shields.io/gem/dt/rails_semantic_logger.svg)](https://rubygems.org/gems/rails_semantic_logger) [![License](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache-2.0) ![](https://img.shields.io/badge/status-Production%20Ready-blue.svg)
33

4-
Rails Semantic Logger replaces the Rails default logger with [Semantic Logger](http://github.com/rocketjob/semantic_logger)
4+
Rails Semantic Logger replaces the Rails default logger with [Semantic Logger](https://logger.rocketjob.io/)
55

6-
* http://github.com/rocketjob/rails_semantic_logger
6+
* http://github.com/reidmorrison/rails_semantic_logger
77

88
## Documentation
99

10-
For complete documentation see: http://rocketjob.github.io/semantic_logger/rails
10+
For complete documentation see: https://logger.rocketjob.io/rails
1111

1212
## Upgrading to Semantic Logger v4.4
1313

@@ -21,13 +21,13 @@ SemanticLogger::Processor.instance.instance_variable_set(:@queue, Queue.new)
2121

2222
## Supports
2323

24-
For the complete list of supported Ruby and Rails versions, see the [Testing file](https://github.com/rocketjob/rails_semantic_logger/blob/master/.travis.yml).
24+
For the complete list of supported Ruby and Rails versions, see the [Testing file](https://github.com/reidmorrison/rails_semantic_logger/blob/master/.travis.yml).
2525

2626
## Author
2727

2828
[Reid Morrison](https://github.com/reidmorrison)
2929

30-
[Contributors](https://github.com/rocketjob/rails_semantic_logger/graphs/contributors)
30+
[Contributors](https://github.com/reidmorrison/rails_semantic_logger/graphs/contributors)
3131

3232
## Versioning
3333

lib/rails_semantic_logger/action_controller/log_subscriber.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def process_action(event)
1515
# Unused, but needed for Devise 401 status code monkey patch to still work.
1616
::ActionController::Base.log_process_action(payload)
1717

18-
# According to PR https://github.com/rocketjob/rails_semantic_logger/pull/37/files
18+
# According to PR https://github.com/reidmorrison/rails_semantic_logger/pull/37/files
1919
# payload[:params] is not always a Hash.
2020
payload[:params] = payload[:params].to_unsafe_h unless payload[:params].is_a?(Hash)
2121
payload[:params] = payload[:params].except(*INTERNAL_PARAMS)

0 commit comments

Comments
 (0)