Make Logger data_ts and service attribs rw.

This commit is contained in:
Daniel Nichter
2013-06-09 20:05:54 -07:00
parent 317b7d538b
commit 6e3ba2ce24
2 changed files with 18 additions and 8 deletions

View File

@@ -46,15 +46,17 @@ has 'pid' => (
);
has 'service' => (
is => 'ro',
isa => 'Str',
is => 'rw',
isa => 'Maybe[Str]',
required => 0,
default => sub { return; },
);
has 'data_ts' => (
is => 'ro',
isa => 'Int',
is => 'rw',
isa => 'Maybe[Int]',
required => 0,
default => sub { return; },
);
has 'online_logging' => (