update authored by galberding's avatar galberding
...@@ -21,7 +21,7 @@ A simple but easy access logging system is available that can be added to ...@@ -21,7 +21,7 @@ A simple but easy access logging system is available that can be added to
each class when needed for debugging or show information to the user. each class when needed for debugging or show information to the user.
Use the provided logger from `aos_logger` with `get_logger()`: Use the provided logger from `aos_logger` with `get_logger()`:
```python ```python
from amirotest.tools.aos_logger import get_logger from amiroci.tools.aos_logger import get_logger
class Foo: class Foo:
def __init__(): def __init__():
self.log = get_logger(name, level, out) self.log = get_logger(name, level, out)
... ...
......