1. 07 Ock, 2013 7 kayıt (commit)
  2. 06 Ock, 2013 30 kayıt (commit)
  3. 05 Ock, 2013 3 kayıt (commit)
    • Luboš Luňák's avatar
      I hate arbitrary integer types · 428a815f
      Luboš Luňák yazdı
      Change-Id: I4c8edfc0ee0390d595c43e384bf6e5f595a7b84f
      428a815f
    • Tor Lillqvist's avatar
      Remove accidentally committed logging code · 7f00e84f
      Tor Lillqvist yazdı
      Change-Id: I8dc055336d1577475282198528a57efc60508cef
      7f00e84f
    • Tor Lillqvist's avatar
      Notice if SAL_LOG is changed while the process is running · 60628799
      Tor Lillqvist yazdı
      It used to call getenv("SAL_LOG") just once and assume it never changed.
      
      Sure, I don't expect that LO code will start changing SAL_LOG back and forth
      all the time. But it is definitely useful in our Android (and iOS) apps to be
      able to call for instance putenv("SAL_LOG=+WARN+INFO") as early as possible,
      before explicitly using any LO code.
      
      That used to work earlier, but not any more with the getEnvironmentVariable()
      thing, as the new logging mechanism gets called while initialising some static
      globals (i.e. before out app code had even started), and that then caused the
      one and only call to getenv("SAL_LOG").
      
      This meant that we didn't get any debugging logging from SAL_INFO and friends
      in the Android app(s) any more.
      
      Change-Id: I932facff4118e5f016c95a4c1461e871184d3fc6
      60628799