summaryrefslogtreecommitdiffstats
path: root/logserver
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2019-03-29 14:17:11 +0100
committerGitHub <noreply@github.com>2019-03-29 14:17:11 +0100
commita5125dc0c668ceb3ae38d1b5b200f19071025330 (patch)
tree89e6735c18c6bb9a8ffd4446a0e8be42a9339f1b /logserver
parent132463f51f11b7e72f57833a688ae4d8855245ac (diff)
parentab8e7b3d0e5ed033eed3e41704152cc7727bef96 (diff)
Merge pull request #8957 from vespa-engine/bjorncs/vespalog-timestamp-format
Increase number of decimals in log timestamp from 3 to 6
Diffstat (limited to 'logserver')
-rw-r--r--logserver/src/test/java/com/yahoo/logserver/handlers/archive/ArchiverHandlerTestCase.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/logserver/src/test/java/com/yahoo/logserver/handlers/archive/ArchiverHandlerTestCase.java b/logserver/src/test/java/com/yahoo/logserver/handlers/archive/ArchiverHandlerTestCase.java
index 525d02c4298..578caab366c 100644
--- a/logserver/src/test/java/com/yahoo/logserver/handlers/archive/ArchiverHandlerTestCase.java
+++ b/logserver/src/test/java/com/yahoo/logserver/handlers/archive/ArchiverHandlerTestCase.java
@@ -28,10 +28,10 @@ import static org.junit.Assert.fail;
public class ArchiverHandlerTestCase {
private static final String[] mStrings = {
- "1095159244.095\thost\t1/2\tservice\tcomponent\tinfo\tpayload1",
- "1095206399.000\thost\t1/2\tservice\tcomponent\tinfo\tpayload2",
- "1095206400.000\thost\t1/2\tservice\tcomponent\tinfo\tpayload3",
- "1095206401.000\thost\t1/2\tservice\tcomponent\tinfo\tpayload4",
+ "1095159244.095000\thost\t1/2\tservice\tcomponent\tinfo\tpayload1",
+ "1095206399.000000\thost\t1/2\tservice\tcomponent\tinfo\tpayload2",
+ "1095206400.000000\thost\t1/2\tservice\tcomponent\tinfo\tpayload3",
+ "1095206401.000000\thost\t1/2\tservice\tcomponent\tinfo\tpayload4",
};
private static final LogMessage[] msg = new LogMessage[mStrings.length];