blob: 2ce0dfa9e5040031e5b48488d066eb840ec34fb7 [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed 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 com.android.camera.debug;
/**
* The default debug configurations.
*/
public class CurrentConfig {
private static final Config sDefaultConfig = Configurations.LOG_ALL_NO_DEBUG;
private static Config sCurrentConfig = sDefaultConfig;
/**
* Sets the config to change the debug settings.
*
* @param config The new config. Sets {@code null} to use the default one.
*/
public static void set(Config config) {
sCurrentConfig = (config != null ? config : sDefaultConfig);
}
/** @return The current config. */
public static Config get() {
return sCurrentConfig;
}
}