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-binding/LogArea.st

11 lines
324 B
Smalltalk

Osmo.LogArea subclass: LogAreaOsmoCore [
LogAreaOsmoCore class >> areaName [ ^ #osmocore ]
LogAreaOsmoCore class >> areaDescription [ ^ 'OSMOCore bindings' ]
LogAreaOsmoCore class >> default [
^ self new
enabled: true;
minLevel: Osmo.LogLevel notice;
yourself
]
]