Include server version in logging tags

This commit is contained in:
Jon Chambers
2021-06-03 11:24:25 -04:00
committed by GitHub
parent 117de2382d
commit 76f5a71727
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
/*
* Copyright 2013-2021 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm;
public class WhisperServerVersion {
private static final String VERSION = "${project.version}";
public static String getServerVersion() {
return VERSION;
}
}