mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Add a few debug statements
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14251 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
672308f2d8
commit
f6f7faa176
1 changed files with 12 additions and 2 deletions
|
@ -459,6 +459,8 @@ main(int argc, char **argv, char **env)
|
|||
NSLog(@"Proc ... %@", proc);
|
||||
NSLog(@"Name ... %@", [proc processName]);
|
||||
NSLog(@"Files ... %@", files);
|
||||
NSLog(@"HeaderDirectory ... %@", headerDirectory);
|
||||
NSLog(@"DocumentationDirectory ... %@", documentationDirectory);
|
||||
}
|
||||
for (i = 1; i < count; i++)
|
||||
{
|
||||
|
@ -626,7 +628,7 @@ main(int argc, char **argv, char **env)
|
|||
}
|
||||
if (verbose == YES)
|
||||
{
|
||||
NSLog(@"Sources for %@ are %@ ... %@", hfile, a, sDate);
|
||||
NSLog(@"Saved sources for %@ are %@ ... %@", hfile, a, sDate);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -653,7 +655,7 @@ main(int argc, char **argv, char **env)
|
|||
}
|
||||
if (verbose == YES)
|
||||
{
|
||||
NSLog(@"Outputs for %@ are %@ ... %@", hfile, a, gDate);
|
||||
NSLog(@"Saved outputs for %@ are %@ ... %@", hfile, a, gDate);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -707,6 +709,10 @@ main(int argc, char **argv, char **env)
|
|||
[a replaceObjectAtIndex: j withObject: s];
|
||||
}
|
||||
}
|
||||
if (verbose == YES)
|
||||
{
|
||||
NSLog(@"Computed outputs for %@ are %@", hfile, a);
|
||||
}
|
||||
[projectRefs setOutputs: a forHeader: hfile];
|
||||
}
|
||||
a = [parser sources];
|
||||
|
@ -714,6 +720,10 @@ main(int argc, char **argv, char **env)
|
|||
{
|
||||
[projectRefs setSources: a forHeader: hfile];
|
||||
}
|
||||
if (verbose == YES)
|
||||
{
|
||||
NSLog(@"Computed sources for %@ are %@", hfile, a);
|
||||
}
|
||||
|
||||
for (j = 0; j < [a count]; j++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue