Skip to content
Snippets Groups Projects
Commit 0f94ff34 authored by Dirk Zimoch's avatar Dirk Zimoch
Browse files

change warning to info for duplicate dbd files

parent e269afb3
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ proc includeFile {context filename} {
set basename [file tail $filename]
if {[lsearch $filesDone $basename ] != -1} {
if {!$quiet} {
puts stderr "Warning: skipping duplicate file $basename included from $FileName($matchInfo(handle))"
puts stderr "Info: skipping duplicate file $basename included from $FileName($matchInfo(handle))"
}
return
}
......@@ -103,7 +103,7 @@ foreach filename $argv {
set basename [file tail $filename]
if {[lsearch $filesDone $basename] != -1} {
if {!$quiet} {
puts stderr "Warning: skipping duplicate file $basename from command line"
puts stderr "Info: skipping duplicate file $basename from command line"
}
continue
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment