smalltalk
/
osmo-st-all
Archived
1
0
Fork 0

Logging: Load the Logging Areas for the MSC

This commit is contained in:
Holger Hans Peter Freyther 2010-12-13 10:42:22 +01:00
parent aa1d652423
commit f5f1d15d5f
2 changed files with 32 additions and 0 deletions

View File

@ -1,6 +1,7 @@
PackageLoader fileInPackage: 'OsmoLogging'.
Osmo.LogArea subclass: LogAreaBSC [
<category: 'osmo-msc-logging'>
LogAreaBSC class >> areaName [ ^ #bsc ]
LogAreaBSC class >> areaDescription [ ^ 'BSC Connectivty' ]
LogAreaBSC class >> default [
@ -10,3 +11,33 @@ Osmo.LogArea subclass: LogAreaBSC [
yourself
]
]
Osmo.LogArea subclass: LogAreaHLR [
<category: 'osmo-msc-logging'>
LogAreaHLR class >> areaName [ ^ #hlr ]
LogAreaHLR class >> areaDescription [ ^ 'HLR work' ]
LogAreaHLR class >> default [
^ self new
enabled: true; minLevel: Osmo.LogLevel debug; yourself.
]
]
Osmo.LogArea subclass: LogAreaVLR [
<category: 'osmo-msc-logging'>
LogAreaVLR class >> areaName [ ^ #vlr ]
LogAreaVLR class >> areaDescription [ ^ 'VLR work' ]
LogAreaVLR class >> default [
^ self new
enabled: true; minLevel: Osmo.LogLevel debug; yourself.
]
]
Osmo.LogArea subclass: LogAreaMSC [
<category: 'osmo-msc-logging'>
LogAreaMSC class >> areaName [ ^ #msc ]
LogAreaMSC class >> areaDescription [ ^ 'MSC work' ]
LogAreaMSC class >> default [
^ self new
enabled: true; minLevel: Osmo.LogLevel debug; yourself.
]
]

View File

@ -4,6 +4,7 @@
<prereq>OsmoNetwork</prereq>
<prereq>OsmoLogging</prereq>
<filein>Logging.st</filein>
<filein>VLR.st</filein>
<filein>HLR.st</filein>