blob: a6a0183c8c84fda43a0d21d1c43a220958db80ed (
plain)
1
2
3
4
5
6
7
|
import os.path
import apport.hookutils
def add_info(report):
log_file = os.path.expanduser('~/.cache/shotwell/shotwell.log')
apport.hookutils.attach_file_if_exists(report, log_file, 'shotwell.log')
|