Skip to content

Commit 359657b

Browse files
committed
Closes #146
1 parent 242f4e8 commit 359657b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Interface/Application/ModuleLogWindow.cc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,15 @@ ModuleLogger::ModuleLogger(ModuleLogWindow* window) : moduleName_(window->name()
8787
connect(this, SIGNAL(logSignal(const QString&, const QColor&)), window, SLOT(appendMessage(const QString&, const QColor&)));
8888
connect(this, SIGNAL(alert(const QColor&)), window, SIGNAL(messageReceived(const QColor&)));
8989
connect(this, SIGNAL(popup(const QString&)), window, SLOT(popupMessageBox(const QString&)));
90+
91+
#ifdef __APPLE__
92+
static bool printTODOMessageOnce = true;
93+
if (printTODOMessageOnce)
94+
{
95+
Log::get("Modules") << NOTICE << formatWithColor(std::string("Coming soon on Mac: module logs will be consolidated here"), std::string("blue")) << std::endl;
96+
printTODOMessageOnce = false;
97+
}
98+
#endif
9099
}
91100

92101
ModuleLogger::~ModuleLogger()

0 commit comments

Comments
 (0)