summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/test/java/com/yahoo/container/logging/CompressWhileDrop.java
blob: 2099037203f21920c3156e4da21cc9fe8c03e988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2020 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.logging;

import java.io.File;

public class CompressWhileDrop {
    public static void main(String [] args) {
        System.out.println("Start compressing file " + args[0]);
        LogFileHandler.runCompression(new File(args[0]));
    }
}