~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to debian/patches/01_reduce_loglevel.patch

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-02-18 21:47:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120218214709-6362d71gqdsdkrj5
Tags: 1.0.2-1
* New upstream release
  - remove logging patch (applied upstream)
  - update s390 patch since it was partially applied upstream
* Include the Evolution plugin as a separate binary package

* Fix compilation issues on SH4 (closes: #658987)
* Merge Ubuntu's binutils-gold linking fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Author: Francois Marier
2
 
Description: hide unnecessary SIP log messages
3
 
Origin: upstream, commit:5cbc2fd92d2c705bf2c1f2034e7c3a8729240e26
4
 
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591807
5
 
Bug: https://projects.savoirfairelinux.com/issues/3823
6
 
Last-Update: 2011-11-24
7
 
 
8
 
--- a/daemon/src/sip/sipvoiplink.cpp
9
 
+++ b/daemon/src/sip/sipvoiplink.cpp
10
 
@@ -178,7 +178,7 @@ SIPVoIPLink::SIPVoIPLink() : transportMap_(), evThread_(new EventThread(this))
11
 
 
12
 
     TRY(pj_init());
13
 
     TRY(pjlib_util_init());
14
 
-    pj_log_set_level(6);    // From 0 (min) to 6 (max)
15
 
+    pj_log_set_level(0);    // From 0 (min) to 6 (max)
16
 
     TRY(pjnath_init());
17
 
 
18
 
     pj_caching_pool_init(cp_, &pj_pool_factory_default_policy, 0);