From aee79871ce50d2f4f636dc28971e51351cfab1d7 Mon Sep 17 00:00:00 2001 From: zhaohe Date: Fri, 24 May 2024 15:51:48 +0800 Subject: [PATCH] add log to uart_prointfer --- src/iflytop/components/uart_printer/uart_printer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iflytop/components/uart_printer/uart_printer.cpp b/src/iflytop/components/uart_printer/uart_printer.cpp index c74ef53..f088b77 100644 --- a/src/iflytop/components/uart_printer/uart_printer.cpp +++ b/src/iflytop/components/uart_printer/uart_printer.cpp @@ -5,6 +5,7 @@ using namespace core; UartPrinter::UartPrinter() {} UartPrinter::~UartPrinter() {} void UartPrinter::initialize(string path, string rate) { + logger->info("initialize uart printer {} {}", path, rate); m_path = path; m_rate = rate; m_uart = make_shared();