From ab46a6cd883eee504d5715325586c2213a5ebf2d Mon Sep 17 00:00:00 2001 From: Constantine Khrulev Date: Mon, 18 Oct 2021 14:16:29 -0800 Subject: [PATCH] Fix a message printed to stdout --- src/basalstrength/YieldStress.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basalstrength/YieldStress.cc b/src/basalstrength/YieldStress.cc index 74f7078b4f..e25fe1b819 100644 --- a/src/basalstrength/YieldStress.cc +++ b/src/basalstrength/YieldStress.cc @@ -46,7 +46,7 @@ YieldStress::YieldStress(IceGrid::ConstPtr g) * Restart a yield stress model from an input file. */ void YieldStress::restart(const File &input_file, int record) { - m_log->message(2, "Initializing the %s...\n", name().c_str()); + m_log->message(2, "* Initializing the %s...\n", name().c_str()); this->restart_impl(input_file, record); }