Skip to content

Commit

Permalink
Merge pull request #1229 from pi-hole/tweak/pihole_vv
Browse files Browse the repository at this point in the history
Extend pihole -vv
  • Loading branch information
DL6ER authored Oct 24, 2021
2 parents 7513bfa + a21b0f8 commit 823bdb3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/args.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,11 @@ void parse_args(int argc, char* argv[])
{
// Print FTL version
printf("****************************** FTL **********************************\n");
printf("Version: %s\n\n", get_FTL_version());
printf("Version: %s\n", get_FTL_version());
printf("Branch: %s\n", GIT_BRANCH);
printf("Commit: %s (%s)\n", GIT_HASH, GIT_DATE);
printf("Architecture: %s\n", FTL_ARCH);
printf("Compiler: %s\n\n", FTL_CC);

// Print dnsmasq version and compile time options
print_dnsmasq_version();
Expand Down

0 comments on commit 823bdb3

Please sign in to comment.