aboutsummaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/impl/LogUtils.java
blob: 262323ec4a57fc54ad12a261467a29661399d9a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log.impl;

import static com.yahoo.vespa.defaults.Defaults.getDefaults;

/**
 * @author Ulf Lilleengen
 * @author Bjorn Borud
 * @author arnej27959
 * @author bjorncs
 */
public class LogUtils {
    public static boolean empty(String s) {
        return (s == null || s.equals(""));
    }
    public static String getHostName () {
        return getDefaults().vespaHostname();
    }
    public static String getPID() {
        return Long.toString(ProcessHandle.current().pid());
    }
}