diff --git a/src/storm-dft/storage/dft/DFTState.cpp b/src/storm-dft/storage/dft/DFTState.cpp index 9d8a4d9d2..607c284ff 100644 --- a/src/storm-dft/storage/dft/DFTState.cpp +++ b/src/storm-dft/storage/dft/DFTState.cpp @@ -280,7 +280,7 @@ namespace storm { template bool DFTState::isActive(size_t id) const { - STORM_LOG_ASSERT(mDft.isRepresentative(id), "Element is no representative."); + STORM_LOG_ASSERT(mDft.isRepresentative(id), "Element " << mDft.getElement(id)->toString() << " is no representative."); return mStatus[mStateGenerationInfo.getSpareActivationIndex(id)]; }