Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2ab7552

Browse filesBrowse files
committed
Checking in changes prior to tagging of version 0.21.
Changelog diff is: diff --git a/Changes b/Changes index 0048935..f083bc7 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,9 @@ Revision history for Fluent::Logger {{$NEXT}} +0.21 2017-03-23T01:33:19Z + * Call buffer_overflow_handler at close() (#21 yoheimuta) + 0.20 2017-03-01T04:36:41Z * Fix tests only which broken with Fluentd 0.14 (#20 #21)
1 parent 0fd8ca8 commit 2ab7552
Copy full SHA for 2ab7552

File tree

Expand file treeCollapse file tree

4 files changed

+7
-2
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+7
-2
lines changed

‎Changes

Copy file name to clipboardExpand all lines: Changes
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ Revision history for Fluent::Logger
22

33
{{$NEXT}}
44

5+
0.21 2017-03-23T01:33:19Z
6+
* Call buffer_overflow_handler at close() (#21 yoheimuta)
7+
58
0.20 2017-03-01T04:36:41Z
69
* Fix tests only which broken with Fluentd 0.14 (#20 #21)
710

‎META.json

Copy file name to clipboardExpand all lines: META.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"web" : "https://github.com/fluent/fluent-logger-perl"
7373
}
7474
},
75-
"version" : "0.20",
75+
"version" : "0.21",
7676
"x_contributors" : [
7777
"HIROSE Masaaki <hirose31@gmail.com>",
7878
"Shinichiro Sei <sei@kayac.com>",
@@ -87,6 +87,7 @@
8787
"Masahiro Nakagawa <repeatedly@gmail.com>",
8888
"Tatsuhiko Miyagawa <miyagawa@bulknews.net>",
8989
"Tokuhiro Matsuno <tokuhirom@gmail.com>",
90+
"yoheimuta <yoheimuta@gmail.com>",
9091
"FUJIWARA Shunichiro <fujiwara.shunichiro@gmail.com>"
9192
],
9293
"x_serialization_backend" : "JSON::PP version 2.27300"

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Fluent::Logger is a structured event logger for Fluent.
5151
This will mitigate the loss of data instead of simply throwing data away.
5252

5353
Your proc should accept a single argument, which will be the internal buffer of messages from the logger.
54+
This coderef is also called when logger.close() failed to flush the remaining internal buffer of messages.
5455
A typical use-case for this would be writing to disk or possibly writing to Redis.
5556

5657
- truncate\_buffer\_at\_overflow

‎lib/Fluent/Logger.pm

Copy file name to clipboardExpand all lines: lib/Fluent/Logger.pm
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package Fluent::Logger;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.20';
7+
our $VERSION = '0.21';
88

99
use IO::Socket::INET;
1010
use IO::Socket::UNIX;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.