diff --git a/src/ipa/libipa/agc.cpp b/src/ipa/libipa/agc.cpp
index 21c0860908..fb6f765029 100644
--- a/src/ipa/libipa/agc.cpp
+++ b/src/ipa/libipa/agc.cpp
@@ -303,8 +303,10 @@ int AgcAlgorithm::configure(agc::Session &session, agc::ActiveState &state,
 	float defGain = config.sensor->gain(v4l2Gain.def().get<int32_t>());
 
 	LOG(Agc, Debug)
-		<< "Exposure: [" << minExposure << ", " << maxExposure
-		<< "], gain: [" << minGain << ", " << maxGain << "]";
+		<< "exposure: [" << minExposure << ',' << maxExposure << "], "
+		<< "gain: [" << minGain << ',' << maxGain << "], "
+		<< "line-duration: " << session.lineDuration << ", "
+		<< "sensor-output: " << session.sensor.outputSize;
 
 	/*
 	 * Compute the frame duration limits.
@@ -632,10 +634,10 @@ void AgcAlgorithm::process(const agc::Session &session, agc::ActiveState &state,
 	state.automatic.yTarget = newEv.yTarget;
 
 	LOG(Agc, Debug)
-		<< "Divided up exposure time, analogue gain, quantization gain"
-		<< " and digital gain are " << newEv.exposureTime
-		<< ", " << state.automatic.gain << ", " << state.automatic.quantizationGain
-		<< " and " << newEv.digitalGain;
+		<< "exposure-time: " << newEv.exposureTime << ", "
+		<< "analogue-gain: " << state.automatic.gain << ", "
+		<< "quantization-gain: " << state.automatic.quantizationGain << ", "
+		<< "digital-gain: " << newEv.digitalGain;
 
 	/*
 	 * Expand the target frame duration so that we do not run faster than
