~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/sshserver/tests/test_logging.py

Split the events classes into their own module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
import zope.component.event
19
19
from zope.event import notify
20
20
 
 
21
from canonical.config import config
 
22
from canonical.launchpad.scripts import WatchedFileHandler
21
23
from lp.codehosting.sshserver.accesslog import (
22
 
    _log_event, get_access_logger, get_codehosting_logger, LoggingEvent,
 
24
    _log_event, get_access_logger, get_codehosting_logger,
23
25
    LoggingManager)
24
 
from canonical.config import config
25
 
from canonical.launchpad.scripts import WatchedFileHandler
 
26
from lp.codehosting.sshserver.events import LoggingEvent
26
27
from lp.testing import TestCase
27
28
 
28
29