Graphics debug message: unable to convert from ABC to XYZ.

That should help diagnosis...


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH-1_2_X@5441 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-10-18 13:14:19 +00:00
parent 5dbd2fd341
commit 26b24702db
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-10-18 Angus Leeming <leeming@lyx.org>
* GraphicsCacheItem.C (findTargetFormat): add debug message.
2002-09-10 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* GraphicsConverter.C (build_script): do not use ChangeExtension

View File

@ -434,6 +434,10 @@ string const findTargetFormat(string const & from)
for (; it2 != end; ++it2) {
if (graphics_converter.isReachable(from, *it2))
return *it2;
else
lyxerr[Debug::GRAPHICS]
<< "Unable to convert from " << from
<< " to " << *it2 << std::endl;
}
// Failed!