anybody else having "debug" output problems?
Recently DEBUG statements of the type:
std::cout << "DEBUG message" <<std::endl;
have started acting up. They are not coming out on the console when they are executed, and if they do show up, they all come out in a bunch at the end when the program exits, concatenated to each other (no line breaks). Anybody else seeing that? It seems to have started doing this about the time the
Unable to find: DialogGridArrange
console message appeared on startup.
Possibly it might be related to this:
http://stackoverflow.com/questions/7019454/why-does-stdcout-output-disappear...
Thanks,
David Mathog mathog@...1176... Manager, Sequence Analysis Facility, Biology Division, Caltech
Try using:
g_critical("msg: file %s\n", __FILE__); g_warning("msg: file %s\n", __FILE__); g_message("msg: file %s\n", __FILE__);
and tell me if any of those work.
-- View this message in context: http://inkscape.13.x6.nabble.com/anybody-else-having-debug-output-problems-t... Sent from the Inkscape - Dev mailing list archive at Nabble.com.
On 15-Apr-2014 13:50, liamw wrote:
Try using:
g_critical("msg: file %s\n", __FILE__); g_warning("msg: file %s\n", __FILE__); g_message("msg: file %s\n", __FILE__);
and tell me if any of those work.
All of them. And today so does
std::cout << "DEBUG message" << std::endl;
It still has the
Unable to find: DialogGridArrange
** (inkscape:4252): WARNING **: Unknown verb name: DialogGridArrange
Strange. Well, no way to figure out what the problem is until it shows up again.
Thanks,
David Mathog mathog@...1176... Manager, Sequence Analysis Facility, Biology Division, Caltech
mathog wrote
It still has the
Unable to find: DialogGridArrange
** (inkscape:4252): WARNING **: Unknown verb name: DialogGridArrange
Something went terribly wrong in src/menus-skeleton.h or src/verbs.cpp .
Just my guess, anyway. I would get a diff from trunk of both of those files to see what exactly went wrong.
-- View this message in context: http://inkscape.13.x6.nabble.com/anybody-else-having-debug-output-problems-t... Sent from the Inkscape - Dev mailing list archive at Nabble.com.
2014-04-16 1:40 GMT+02:00 liamw <inkscapebrony@...400...>:
mathog wrote
It still has the
Unable to find: DialogGridArrange
** (inkscape:4252): WARNING **: Unknown verb name: DialogGridArrange
Something went terribly wrong in src/menus-skeleton.h or src/verbs.cpp .
Just my guess, anyway. I would get a diff from trunk of both of those files to see what exactly went wrong.
This is typically a symptom of a version mismatch between the files installed in /usr/local/share and the version of Inkscape you're running. In most cases it is harmless.
Another possibility is that someone forgot to remove DialogGridArrange from the menu definition when they removed this verb from the code.
Regards, Krzysztof
On Wed, 2014-04-16 at 03:09 +0200, Krzysztof Kosiński wrote:
Just my guess, anyway. I would get a diff from trunk of both of
those files
to see what exactly went wrong.
This is typically a symptom of a version mismatch between the files installed in /usr/local/share and the version of Inkscape you're running. In most cases it is harmless.
This is correct. When I merged in the Arrange dialog work from GSoC 2013 it changed the name of the dialog and one needs an updated menu xml in /usr/share/inkscape or /usr/local/share/inkscape depending on the compile flag.
Martin,
participants (4)
-
Krzysztof Kosiński
-
liamw
-
Martin Owens
-
mathog