aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/com/jsyn/engine/TestDevices.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/jsyn/engine/TestDevices.java')
-rw-r--r--src/test/java/com/jsyn/engine/TestDevices.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/test/java/com/jsyn/engine/TestDevices.java b/src/test/java/com/jsyn/engine/TestDevices.java
index 52ee18f..1862536 100644
--- a/src/test/java/com/jsyn/engine/TestDevices.java
+++ b/src/test/java/com/jsyn/engine/TestDevices.java
@@ -23,15 +23,11 @@ import com.jsyn.devices.AudioDeviceManager;
import com.jsyn.unitgen.LineIn;
import com.jsyn.unitgen.LineOut;
import org.junit.jupiter.api.Test;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class TestDevices {
- private static final Logger LOGGER = LoggerFactory.getLogger(TestDevices.class);
-
@Test
public void testPassThrough() {
Synthesizer synth;
@@ -55,7 +51,7 @@ public class TestDevices {
// We only need to start the LineOut. It will pull data from the LineIn.
lineOut.start();
- LOGGER.debug("Audio passthrough started.");
+ System.out.println("Audio passthrough started.");
// Sleep a while.
double sleepTime = 2.0;
double startTime = synth.getCurrentTime();
@@ -70,7 +66,7 @@ public class TestDevices {
assertEquals(sleepTime, actualSleepTime, 0.1, "Time has advanced. " + actualSleepTime);
// Stop everything.
synth.stop();
- LOGGER.debug("All done.");
+ System.out.println("All done.");
}
}