blob: a7e83913c1b486dd5a1cf486c9353c6bb117f29f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.rocketmq.ons.api.impl.util;
import java.util.Arrays;
import org.apache.rocketmq.client.log.ClientLogger;
import org.apache.rocketmq.logging.InternalLogger;
public class ClientLoggerUtil {
private static final String CLIENT_LOG_ROOT = "ons.client.logRoot";
private static final String CLIENT_LOG_FILEMAXINDEX = "ons.client.logFileMaxIndex";
private static final int CLIENT_LOG_FILE_MAX_INDEX = 100;
private static final String CLIENT_LOG_LEVEL = "ons.client.logLevel";
private static final String[] LEVEL_ARRAY = {"ERROR", "WARN", "INFO", "DEBUG"};
private static final long CLIENT_LOG_FILESIZE = 64 * 1024 * 1024L;
public static InternalLogger getClientLogger() {
//Make sure
String onsClientLogRoot = System.getProperty(CLIENT_LOG_ROOT, System.getProperty("user.home") + "/logs");
System.setProperty(ClientLogger.CLIENT_LOG_ROOT, onsClientLogRoot);
String onsClientLogLevel = System.getProperty(CLIENT_LOG_LEVEL, "INFO").trim().toUpperCase();
if (!Arrays.asList(LEVEL_ARRAY).contains(onsClientLogLevel)) {
onsClientLogLevel = "INFO";
}
System.setProperty(ClientLogger.CLIENT_LOG_LEVEL, onsClientLogLevel);
String onsClientLogMaxIndex = System.getProperty(CLIENT_LOG_FILEMAXINDEX, "10").trim();
try {
int maxIndex = Integer.parseInt(onsClientLogMaxIndex);
if (maxIndex <= 0 || maxIndex > CLIENT_LOG_FILE_MAX_INDEX) {
throw new NumberFormatException();
}
} catch (NumberFormatException e) {
onsClientLogMaxIndex = "10";
}
System.setProperty(ClientLogger.CLIENT_LOG_MAXINDEX, onsClientLogMaxIndex);
System.setProperty(ClientLogger.CLIENT_LOG_FILENAME, "ons.log");
System.setProperty(ClientLogger.CLIENT_LOG_FILESIZE, String.valueOf(CLIENT_LOG_FILESIZE));
return ClientLogger.getLog();
}
}