generate checkout message in verbose mode, and in stdout, no stderr, since is not an error

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6761 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-11-19 20:47:13 +00:00
commit 899c08b740

View file

@ -696,7 +696,8 @@ int SWIG_main(int argc, char *argv[], Language *l) {
if (!f) {
fprintf(stderr,"Unable to create file '%s'\n", outfile);
} else {
fprintf(stderr,"'%s' checked out from the SWIG library.\n", input_file);
if (Verbose)
fprintf(stdout,"'%s' checked out from the SWIG library.\n", input_file);
fputs(Char(s),f);
fclose(f);
}