You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOGP(info, fmt::format("wrong number of dimensions! this {} container {}", this->getDim(), container.mDim));
192
+
LOGP(info, "wrong number of dimensions! this {} container {}", this->getDim(), container.mDim);
193
193
#endif
194
194
return;
195
195
}
196
196
if (this->getDegree() != container.mDegree) {
197
197
#ifndef GPUCA_ALIROOT_LIB
198
-
LOGP(info, fmt::format("wrong number of degrees! this {} container {}", this->getDegree(), container.mDegree));
198
+
LOGP(info, "wrong number of degrees! this {} container {}", this->getDegree(), container.mDegree);
199
199
#endif
200
200
return;
201
201
}
202
202
if (this->isInteractionOnly() != container.mInteractionOnly) {
203
203
#ifndef GPUCA_ALIROOT_LIB
204
-
LOGP(info, fmt::format("InteractionOnly is set for this object to {}, but stored as {} in the container", this->isInteractionOnly(), container.mInteractionOnly));
204
+
LOGP(info, "InteractionOnly is set for this object to {}, but stored as {} in the container", this->isInteractionOnly(), container.mInteractionOnly);
LOGP(info, fmt::format("wrong number of dimensions! this {} container {}", Dim, container.mDim));
329
+
LOGP(info, "wrong number of dimensions! this {} container {}", Dim, container.mDim);
330
330
#endif
331
331
return;
332
332
}
333
333
if (Degree != container.mDegree) {
334
334
#ifndef GPUCA_ALIROOT_LIB
335
-
LOGP(info, fmt::format("wrong number of degrees! this {} container {}", Degree, container.mDegree));
335
+
LOGP(info, "wrong number of degrees! this {} container {}", Degree, container.mDegree);
336
336
#endif
337
337
return;
338
338
}
339
339
if (InteractionOnly != container.mInteractionOnly) {
340
340
#ifndef GPUCA_ALIROOT_LIB
341
-
LOGP(info, fmt::format("InteractionOnly is set for this object to {}, but stored as {} in the container", InteractionOnly, container.mInteractionOnly));
341
+
LOGP(info, "InteractionOnly is set for this object to {}, but stored as {} in the container", InteractionOnly, container.mInteractionOnly);
0 commit comments