Skip to content

Commit

Permalink
[fix] file logger import (#2773)
Browse files Browse the repository at this point in the history
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
  • Loading branch information
2 people authored and victordibia committed Jul 30, 2024
1 parent 6b62bf3 commit 48fa774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autogen/logger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .file_logger import FileLogger
from .logger_factory import LoggerFactory
from .sqlite_logger import SqliteLogger

__all__ = ("LoggerFactory", "SqliteLogger")
__all__ = ("LoggerFactory", "SqliteLogger", "FileLogger")
2 changes: 2 additions & 0 deletions autogen/logger/file_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

logger = logging.getLogger(__name__)

__all__ = ("FileLogger",)


class FileLogger(BaseLogger):
def __init__(self, config: Dict[str, Any]):
Expand Down

0 comments on commit 48fa774

Please sign in to comment.