Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Print version on start 3 #320

Merged
merged 8 commits into from
Dec 7, 2018
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions turbinia/turbiniactl.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@ def main():
# Server
subparsers.add_parser('server', help='Run Turbinia Server')

#print version
log.info('version: {0:s}'.format(__version__))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this the same as the previous PR? Also, just FYI, you shouldn't have to delete/recreate the Pull Requests, you should be able to push a commit to the same branch, and it will be reflected in the PR, :).

Copy link
Contributor Author

@C-H-Fahy C-H-Fahy Dec 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aarontp does it? oops. I'm still getting used to git.

I've changed it to what it's supposed to be now :)


args = parser.parse_args()
if args.quiet:
log.setLevel(logging.ERROR)
Expand Down