diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.cpp b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
index f9e3a7c4168cc56eb6587051bd161686ca7ceb19..2652567d2c59bef61e0caa246b4fa45cc7767d96 100644
--- a/src/modules/partition/gui/EditExistingPartitionDialog.cpp
+++ b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
@@ -162,6 +162,11 @@ EditExistingPartitionDialog::applyChanges( PartitionCoreModule* core )
     bool partResizedMoved = newFirstSector != m_partition->firstSector() ||
                             newLastSector  != m_partition->lastSector();
 
+    cDebug() << "old boundaries:" << m_partition->firstSector()
+             << m_partition->lastSector() << m_partition->length();
+    cDebug() << "new boundaries:" << newFirstSector << newLastSector;
+    cDebug() << "dirty status:" << m_partitionSizeController->isDirty();
+
     FileSystem::Type fsType = FileSystem::Unknown;
     if ( m_ui->formatRadioButton->isChecked() )
     {