Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Nov 15, 2019
2 parents ff12ac6 + 25119e0 commit 3864d01
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
<!--
git log --pretty="* %s ([%h](https://github.com/jecisc/TinyLogger/commit/%H))" v1.1.3...HEAD --grep="Merge pull"
git log --pretty="* %s ([%h](https://github.com/jecisc/TinyLogger/commit/%H))" v1.1.4...HEAD --grep="Merge pull"
('Content' copyWithRegex: 'Merge pull request #[0-9]+ from [^/]+/[0-9]*' matchesReplacedWith: '') copyReplaceAll: '-' with: ' '
-->

# [v1.1.4](https://github.com/jecisc/TinyLogger/compare/v1.1.3...v1.1.4) (2019-11-15)

## Bug fix

* STDOut logger should flush after recoring ([6e6800a](https://github.com/jecisc/TinyLogger/commit/6e6800a5f167e3606d084290c7b3e4cfc2625985))

# [v1.1.3](https://github.com/jecisc/TinyLogger/compare/v1.1.2...v1.1.3) (2019-11-08)

## Infrastructure
Expand Down
7 changes: 6 additions & 1 deletion src/TinyLogger/TinyStdoutLogger.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,10 @@ TinyStdoutLogger >> initialize [

{ #category : #logging }
TinyStdoutLogger >> record: aString [
self record: aString on: streamClassProvider stdout
| stream |
stream := streamClassProvider stdout.
self record: aString on: stream.

"The flush is needed to send the record in the stdout."
stream flush
]

0 comments on commit 3864d01

Please sign in to comment.