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

Remove custom logging config #71

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions napalm_sros/sros.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import json
import time
import re
import logging
import datetime
import traceback
import xmltodict
Expand Down Expand Up @@ -56,11 +55,11 @@
GET_IPV6_NEIGHBORS_TABLE,GET_LLDP_NEIGHBORS,GET_LLDP_NEIGHBORS_DETAIL, \
GET_NETWORK_INSTANCES,GET_NTP_PEERS,GET_NTP_SERVERS,GET_OPTICS, \
GET_PROBES_CONFIG,GET_ROUTE_TO,GET_SNMP_INFORMATION,GET_USERS
from napalm_sros.utils.utils import init_logging

from .api import get_bgp_neighbors, get_bgp_neighbors_detail
import logging

log = init_logging()
log = logging.getLogger(__file__)

class NokiaSROSDriver(NetworkDriver):
"""Napalm driver for Skeleton."""
Expand Down
12 changes: 0 additions & 12 deletions napalm_sros/utils/utils.py

This file was deleted.