Revision 8b4b9936 ncclient/session/__init__.py

b/ncclient/session/__init__.py
12 12
# See the License for the specific language governing permissions and
13 13
# limitations under the License.
14 14

  
15
from session import SessionError, SessionCloseError
15
import logging
16
logger = logging.getLogger('ncclient.session')
17

  
18
from session import DebugListener, SessionError, SessionCloseError
16 19
from ssh import SSHSession
20
from capabilities import CAPABILITIES, Capabilities
17 21

  
18 22
__all__ = [
23
    'DebugListener'
24
    'Session'
19 25
    'SSHSession',
20 26
    'SessionError',
21 27
    'SessionCloseError',
28
    'Capabilities',
29
    'CAPABILITIES'
22 30
]

Also available in: Unified diff