Hi, dcabaton <cabaton_david@yahoo.fr> writes: > Hi ! I create an gtk interface with glade for the framebuffer ! When i > run the application there is mani errors message but i can't read this > ! > > I run with ./test > errors.log but there is no message in the file ! > > The messages are about GTK Warning... > > How to record the errors messages of GTK ? Error messages and warnings go to stderr but you are only catching stdout. Try './test > errors.log 2>&1'. Sven