Anonymous2183
How to show information in the lower left panel of TeXMaker?
![Screenshot 2021-11-05 at 18.23.54.png](/image?hash=b6e491e2369e8008fd9b78e7f15015a5272c5d861b9cb49e79a49885993826fd)
In case it matters, I'm using Windows 7, TeXMaker and MikTeX
Top Answer
samcarter
The panel at the lower edge of TeXMaker shows the `.log` file created by latex.
To add information to the raw log file (bottom most panel), you can use macros like `\typeout{...}`.
The panel above is a summarised version of the `.log` file in which TeXMaker shows errors, warnings etc. You can add a warning e.g. with `\@warning{}`
```
\documentclass{article}
\begin{document}
test
\typeout{Quack!!!}
\makeatletter
\@warning{Quack Quack!!}
\makeatother
\end{document}
```
![image.png](/image?hash=dbe67500b6d33fa5987082876819200b70580f728ef088cc1996add9b26ef3e3)