summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/impl/LogUtils.java
blob: 8c182625c8503a3ed5234d9348348f6e113b165d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Yahoo. 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
 * TODO remove "public" keyword, should be package private
 */
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());
    }
}