/eclipse-plugin/plugins/com.google.test.metric.eclipse.core/src/main/java/com/google/test/metric/eclipse/internal/util/Logger.java
http://testability-explorer.googlecode.com/ · Java · 39 lines · 12 code · 4 blank · 23 comment · 0 complexity · d9e49c18b8b12ccc262645801542cabc MD5 · raw file
- /*
- * Copyright 2009 Google Inc.
- *
- * 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.google.test.metric.eclipse.internal.util;
- import com.google.test.metric.eclipse.core.plugin.Activator;
- import org.eclipse.core.runtime.Status;
- /**
- * Utility class providing integration with Eclipse's logging framework.
- * <p>
- * Exceptions logged this way will show up in the Error log view.
- *
- * @author klundberg@google.com (Karin Lundberg)
- *
- */
- public class Logger {
- public void logException(String msg, Throwable e) {
- Activator.getDefault().getLog().log(new Status(Status.ERROR, Activator.PLUGIN_ID, msg, e));
- }
- public void logException(Throwable e) {
- Activator.getDefault().getLog().log(
- new Status(Status.ERROR, Activator.PLUGIN_ID, e.getMessage(), e));
- }
- }