1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-network/osmo/OsmoCtrlLogging.st

14 lines
375 B
Smalltalk

"I represent the logging areas"
Osmo.LogArea subclass: LogAreaCTRL [
<category: 'OsmoNetwork-Control'>
LogAreaCTRL class >> areaName [ ^ #ctrl ]
LogAreaCTRL class >> areaDescription [ ^ 'Osmo CTRL handling' ]
LogAreaCTRL class >> default [
^ self new
enabled: true;
minLevel: Osmo.LogLevel debug;
yourself
]
]