Skip to content

Commit

Permalink
Fix to Issue #94 - More robust logging
Browse files Browse the repository at this point in the history
  • Loading branch information
russellallen committed Oct 24, 2016
1 parent 7cd2491 commit 182cc44
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions objects/core/systemLog.self
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'0.1.0'
'0.2.0'
'
Copyright 1992-2014 AUTHORS.
Copyright 1992-2016 AUTHORS.
See the legal/LICENSE file for license information and legal/AUTHORS for authors.
'

["preFileIn" self] value


'-- Module body'
Expand Down Expand Up @@ -203,7 +203,7 @@ See the legal/LICENSE file for license information and legal/AUTHORS for authors
severity asColorAnsiString, ' -- ',
(logger asString != '' ifTrue: [logger asString, ': ']
False: ''),
message asString).
(ensureString: message)).
} | )

bootstrap addSlotsTo: bootstrap stub -> 'globals' -> 'log' -> 'entry' -> 'parent' -> () From: ( | {
Expand All @@ -221,7 +221,7 @@ See the legal/LICENSE file for license information and legal/AUTHORS for authors
severity asString, ' -- ',
(logger asString != '' ifTrue: [logger asString, ': ']
False: ''),
message asString).
(ensureString: message)).
} | )

bootstrap addSlotsTo: bootstrap stub -> 'globals' -> 'log' -> 'levels' -> () From: ( | {
Expand Down Expand Up @@ -783,9 +783,9 @@ SlotsToOmit: directory fileInTimeString myComment postFileIn revision subpartNam
} | )

bootstrap addSlotsTo: bootstrap stub -> 'globals' -> 'modules' -> 'systemLog' -> () From: ( | {
'ModuleInfo: Module: systemLog InitialContents: InitializeToExpression: (\'0.1.0\')\x7fVisibility: public'
'ModuleInfo: Module: systemLog InitialContents: InitializeToExpression: (\'0.2.0\')\x7fVisibility: public'

revision <- '0.1.0'.
revision <- '0.2.0'.
} | )

bootstrap addSlotsTo: bootstrap stub -> 'globals' -> 'modules' -> 'systemLog' -> () From: ( | {
Expand Down

0 comments on commit 182cc44

Please sign in to comment.