Skip to content

Commit 317fe0b

Browse files
committed
DPL: fix typo in message
1 parent 32438b0 commit 317fe0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/src/TimesliceIndex.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ TimesliceIndex::OldestInputInfo TimesliceIndex::setOldestPossibleInput(Timeslice
126126
{
127127
// Each channel oldest possible input must be monotoically increasing.
128128
if (timestamp.value < mChannels[channel.value].oldestForChannel.value) {
129-
LOG(error) << "Received bogus oldest possible timeslice " << timestamp.value << " for channel " << channel.value << " Excpected >= " << mChannels[channel.value].oldestForChannel.value;
129+
LOG(error) << "Received bogus oldest possible timeslice " << timestamp.value << " for channel " << channel.value << ". Expected >= " << mChannels[channel.value].oldestForChannel.value;
130130
}
131131
mChannels[channel.value].oldestForChannel = timestamp;
132132
OldestInputInfo result{timestamp, channel};

0 commit comments

Comments
 (0)