Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Commit

Permalink
Change output printfs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomotron committed Oct 9, 2019
1 parent f64271e commit 6012ff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/svrcapture.c
Original file line number Diff line number Diff line change
Expand Up @@ -569,11 +569,11 @@ int main(int argc, char *argv[])
getcwd(cwd, sizeof(cwd));

// Wait until the file is written and close it
printf("writing diagram text file\n");
printf("Writing diagram template file...\n");
fclose(outFile);

// Run PlantUML on the text file we just generated
printf("Making diagram in: %s\n", cwd);
printf("Making diagram in '%s'. This may take a while.\n", cwd);
snprintf(command, 256, "java -jar \'%s\' \'%s/%s\'", args.jarpath, cwd, timingDiagramFileName);
system(command);

Expand Down

0 comments on commit 6012ff1

Please sign in to comment.