Skip to content

Commit 44320b0

Browse files
committed
Fix copy paste error.
1 parent 2033052 commit 44320b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/include/pcl/console/print.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,8 +433,8 @@ namespace pcl
433433
{
434434
const auto str = to_string(format, std::forward<Args>(args)...);
435435

436-
LogRecord logEntry{L_INFO, str};
437-
Logger::getInstance().print(stream, logEntry);
436+
LogRecord logEntry{level, str};
437+
Logger::getInstance().print(logEntry);
438438
}
439439

440440
/** \brief Print a highlighted info message on stream with colors

0 commit comments

Comments
 (0)