update copyright
[fedora-idea.git] / plugins / cvs / cvs-core / src / com / intellij / cvsSupport2 / connections / ssh / SshLogger.java
blobefd3e161ab02b7922caa10af5b9c03c3a914776a
1 package com.intellij.cvsSupport2.connections.ssh;
3 import com.intellij.openapi.diagnostic.Logger;
5 public class SshLogger {
6 private final static Logger LOG = Logger.getInstance("#com.intellij.cvsSupport2.connections.ssh.SshLogger");
8 public static void debug(final String s) {
9 LOG.debug(s);
12 public static void debug(final String s, final Throwable t) {
13 LOG.debug(s, t);