Skip to content

Commit

Permalink
Correct logger
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-richardson committed Feb 24, 2016
1 parent 5dbab5e commit e33ceee
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import com.intellij.openapi.diagnostic.Logger;
import com.mjrichardson.teamCity.buildTriggers.*;
import jetbrains.buildServer.log.Loggers;
import org.apache.commons.io.IOUtils;
import org.testng.Assert;
import org.testng.annotations.Test;
Expand All @@ -28,7 +27,6 @@
import java.net.URI;
import java.net.URISyntaxException;


@Test
public class DeploymentsProviderTest {
final String octopusUrl = "http://baseUrl";
Expand All @@ -45,7 +43,7 @@ public class DeploymentsProviderTest {
static String ProjectWithNoReleases = "Projects-101";
static String ProjectThatDoesNotExist = "Projects-00";

private static final Logger LOG = Logger.getInstance(Loggers.VCS_CATEGORY + DeploymentCompleteBuildTrigger.class);
private static final Logger LOG = Logger.getInstance(DeploymentsProviderTest.class.getName());

@Test(enabled = false)
public void testGetDeploymentsFromRealServer() throws Exception {
Expand Down

0 comments on commit e33ceee

Please sign in to comment.