Skip to content

Commit

Permalink
Remove LoggingExtras imports
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Oct 28, 2024
1 parent 2928b59 commit 4868dfb
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Connections.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module Connections

export Connection, newconnection, releaseconnection, getrawstream, inactiveseconds, shouldtimeout, default_connection_limit, set_default_connection_limit!, Pool

using Sockets, LoggingExtras, NetworkOptions
using Sockets, NetworkOptions
using MbedTLS: SSLConfig, SSLContext, setup!, associate!, hostname!, handshake!
using MbedTLS, OpenSSL, ConcurrentUtilities
using ..IOExtras, ..Conditions, ..Exceptions
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Exceptions

export @try, HTTPError, ConnectError, TimeoutError, StatusError, RequestError, current_exceptions_to_string
using LoggingExtras, ExceptionUnwrapping
using ExceptionUnwrapping
import ..HTTP # for doc references

@eval begin
Expand Down
2 changes: 1 addition & 1 deletion src/HTTP.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const DEBUG_LEVEL = Ref(0)

Base.@deprecate escape escapeuri

using Base64, Sockets, Dates, URIs, LoggingExtras, MbedTLS, OpenSSL
using Base64, Sockets, Dates, URIs, MbedTLS, OpenSSL

function access_threaded(f, v::Vector)
tid = Threads.threadid()
Expand Down
2 changes: 1 addition & 1 deletion src/Streams.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Streams

export Stream, closebody, isaborted, setstatus, readall!

using Sockets, LoggingExtras
using Sockets
using ..IOExtras, ..Messages, ..Connections, ..Conditions, ..Exceptions
import ..HTTP # for doc references

Expand Down
2 changes: 1 addition & 1 deletion src/WebSockets.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module WebSockets

using Base64, LoggingExtras, UUIDs, Sockets, Random
using Base64, UUIDs, Sockets, Random
using MbedTLS: digest, MD_SHA1, SSLContext
using ..IOExtras, ..Streams, ..Connections, ..Messages, ..Conditions, ..Servers
using ..Exceptions: current_exceptions_to_string
Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/ConnectionRequest.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ConnectionRequest

using URIs, Sockets, Base64, LoggingExtras, ConcurrentUtilities, ExceptionUnwrapping
using URIs, Sockets, Base64, ConcurrentUtilities, ExceptionUnwrapping
import MbedTLS
import OpenSSL
using ..Messages, ..IOExtras, ..Connections, ..Streams, ..Exceptions
Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/CookieRequest.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module CookieRequest

using Dates, LoggingExtras, URIs
using Dates, URIs
using ..Cookies, ..Messages, ..Strings

# default global cookie jar
Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/HeadersRequest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module HeadersRequest

export headerslayer, setuseragent!

using Base64, URIs, LoggingExtras
using Base64, URIs
using ..Messages, ..Forms, ..IOExtras, ..Sniff, ..Forms, ..Strings

"""
Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/RedirectRequest.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module RedirectRequest

using URIs, LoggingExtras
using URIs
using ..Messages, ..Pairs

export redirectlayer, nredirects
Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/RetryRequest.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module RetryRequest

using Sockets, LoggingExtras, MbedTLS, OpenSSL, ExceptionUnwrapping
using Sockets, MbedTLS, OpenSSL, ExceptionUnwrapping
using ..IOExtras, ..Messages, ..Strings, ..ExceptionRequest, ..Exceptions

export retrylayer
Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/StreamRequest.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module StreamRequest

using ..IOExtras, ..Messages, ..Streams, ..Connections, ..Strings, ..RedirectRequest, ..Exceptions
using LoggingExtras, CodecZlib, URIs
using CodecZlib, URIs
using SimpleBufferStream: BufferStream
using ConcurrentUtilities: @samethreadpool_spawn

Expand Down
2 changes: 1 addition & 1 deletion src/clientlayers/TimeoutRequest.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module TimeoutRequest

using ..Connections, ..Streams, ..Exceptions, ..Messages
using LoggingExtras, ConcurrentUtilities
using ConcurrentUtilities
using ..Exceptions: current_exceptions_to_string

export timeoutlayer
Expand Down
2 changes: 1 addition & 1 deletion src/cookies.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module Cookies
export Cookie, CookieJar, cookies, stringify, getcookies!, setcookies!, addcookie!

import Base: ==
using Dates, URIs, LoggingExtras, Sockets
using Dates, URIs, Sockets
using ..IOExtras, ..Parsers, ..Messages

@enum SameSite SameSiteDefaultMode=1 SameSiteLaxMode SameSiteStrictMode SameSiteNoneMode
Expand Down

0 comments on commit 4868dfb

Please sign in to comment.