mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
use a shared logger through a fabric in order to have the same settings everywhere
This commit is contained in:
parent
2c1b4bb7ef
commit
21ea24ea53
16 changed files with 170 additions and 121 deletions
|
|
@ -9,7 +9,7 @@
|
|||
"""
|
||||
from abc import ABCMeta, abstractmethod
|
||||
|
||||
import logging
|
||||
from ...tools.logging import logger
|
||||
|
||||
|
||||
class BUIparser(object, metaclass=ABCMeta):
|
||||
|
|
@ -17,7 +17,7 @@ class BUIparser(object, metaclass=ABCMeta):
|
|||
interface for ``burp`` configuration files parser.
|
||||
"""
|
||||
|
||||
logger = logging.getLogger('burp-ui')
|
||||
logger = logger
|
||||
|
||||
@abstractmethod
|
||||
def read_server_conf(self, conf=None):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue