diff --git a/src/p_tick.c b/src/p_tick.c
index c8c927ae1912ab9204c14f69787406cbf6a9a15f..4915c5df203731623e0263757ce638145c2b97b9 100644
--- a/src/p_tick.c
+++ b/src/p_tick.c
@@ -748,8 +748,6 @@ void P_Ticker(boolean run)
 				fixed_t xydist = R_PointToDist2(camera.x, camera.y, quake.epicenter->x, quake.epicenter->y);
 				fixed_t dist = R_PointToDist2(0, camera.z, xydist, quake.epicenter->z);
 
-				CONS_Printf("%d\n", dist / FRACUNIT);
-
 				// More effect closer to epicenter, outside of radius = no effect
 				if (!quake.radius || dist > quake.radius)
 					ir = 0;