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 7 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('turbinia 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.

Suggested change
log.info('turbinia version: {0:s}'.format(__version__))
log.info('Turbinia 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.

Just one last tiny nit, :)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@aarontp Done.


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