Skip to content

Commit

Permalink
Add logger alias for LOGGER
Browse files Browse the repository at this point in the history
  • Loading branch information
remingtonc committed Apr 30, 2020
1 parent ec75312 commit 770d9e7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/cisco_gnmi/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@


LOGGER = logging.getLogger(__name__)
logger = LOGGER


class ClientBuilder(object):
Expand Down
1 change: 1 addition & 0 deletions src/cisco_gnmi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@


LOGGER = logging.getLogger(__name__)
logger = LOGGER


class Client(object):
Expand Down
1 change: 1 addition & 0 deletions src/cisco_gnmi/nx.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@


LOGGER = logging.getLogger(__name__)
logger = LOGGER


class NXClient(Client):
Expand Down
1 change: 1 addition & 0 deletions src/cisco_gnmi/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@


LOGGER = logging.getLogger(__name__)
logger = LOGGER


def gen_target_netloc(target, netloc_prefix="//", default_port=9339):
Expand Down
1 change: 1 addition & 0 deletions src/cisco_gnmi/xe.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@


LOGGER = logging.getLogger(__name__)
logger = LOGGER


class XEClient(Client):
Expand Down
1 change: 1 addition & 0 deletions src/cisco_gnmi/xr.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@


LOGGER = logging.getLogger(__name__)
logger = LOGGER


class XRClient(Client):
Expand Down

0 comments on commit 770d9e7

Please sign in to comment.