diff options
Diffstat (limited to 'lib/mixlib/log')
-rw-r--r-- | lib/mixlib/log/child.rb | 2 | ||||
-rw-r--r-- | lib/mixlib/log/logger.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/mixlib/log/child.rb b/lib/mixlib/log/child.rb index 2d7de00..2b82cea 100644 --- a/lib/mixlib/log/child.rb +++ b/lib/mixlib/log/child.rb @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -require "mixlib/log/logging" +require_relative "logging" module Mixlib module Log diff --git a/lib/mixlib/log/logger.rb b/lib/mixlib/log/logger.rb index e1f8929..378c6b9 100644 --- a/lib/mixlib/log/logger.rb +++ b/lib/mixlib/log/logger.rb @@ -1,5 +1,5 @@ require "logger" -require "mixlib/log/logging" +require_relative "logging" # A subclass of Ruby's stdlib Logger with all the mutex and logrotation stuff # ripped out, and metadata added in. |