/usr/share/pyshared/Wammu/ErrorLog.py is in wammu 0.36-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | # -*- coding: UTF-8 -*-
# vim: expandtab sw=4 ts=4 sts=4:
'''
Wammu - Phone manager
Error log handling
'''
__author__ = 'Michal Čihař'
__email__ = 'michal@cihar.com'
__license__ = '''
Copyright © 2003 - 2010 Michal Čihař
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
'''
import Wammu
import tempfile
import wx
import sys
import os
import locale
if Wammu.gammu_error == None:
import gammu
# set later in Wammu.Main to have correct debug filename
DEBUG_LOG_FILENAME = None
# Template for system information
SYSTEM_TEMPLATE = """
--------------- System information ----------------
Platform %s
Python %s
wxPython %s
Wammu %s
python-gammu %s
Gammu %s
Bluetooth %s
locales %s (%s)
"""
def GetSystemInfo():
"""
Returns system information in text form.
"""
pyver = sys.version.split()[0]
wxver = wx.VERSION_STRING
wammuver = Wammu.__version__
try:
(gammuver, pgammuver) = gammu.Version()
except:
try:
(gammuver, pgammuver, ignore) = gammu.Version()
except:
(gammuver, pgammuver) = ('Unknown', 'Unknown')
(loc, charset) = locale.getdefaultlocale()
bluez = 'None'
try:
import bluetooth
bluez = 'PyBluez'
except ImportError:
pass
result = SYSTEM_TEMPLATE % (
sys.platform,
pyver,
wxver,
wammuver,
pgammuver,
gammuver,
bluez,
loc,
charset)
if Wammu.configuration is not None:
section = Wammu.configuration.ReadInt('/Gammu/Section')
config = Wammu.configuration.gammu.GetConfig(section)
result += 'connection %s\n' % config['Connection']
result += 'device %s\n' % config['Device']
result += 'model %s\n' % config['Model']
return result
def SaveLog(outf = None, filename = None):
"""
Saves debug log to filename or handle. If none specified
"""
if DEBUG_LOG_FILENAME is None:
return None, None
if outf is None:
if filename is None:
handle, name = tempfile.mkstemp('.log', 'wammu-crash-')
outf = os.fdopen(handle, 'w+')
else:
name = filename
outf = open(filename, 'w+')
inf = open(DEBUG_LOG_FILENAME, 'r')
outf.write(GetSystemInfo())
outf.write(inf.read())
inf.close()
if filename is not None:
outf.close()
return outf, name
|