The following code prodcues the warning "pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored". How to resolve this warning has been described in the answers to another question.
\documentclass[titlepage]{article}
\usepackage{hyperref}
\title{Test}
\author{Me}
\begin{document}
\maketitle
abc
\end{document}
This warning is not reported by latexrun or TeXstudio. I am wondering whether it is not recognized because of the bracket which is printed in front of the warning. On stdout it looks like this:
]pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
In the log file the bracket is not present. Is it intended that the output on stdout and in the log file are different? Does the bracket have a meaning?
This happens when running pdflatex, xelatex does not give a warning. Why does xelatex not report a warning?