~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2010-01-06 17:46:15 UTC
  • mto: (4634.119.1 2.0)
  • mto: This revision was merged to the branch mainline in revision 4951.
  • Revision ID: john@arbash-meinel.com-20100106174615-cq1nckxhbuyemgjx
Fix bug #503886, errors setting up logging go to stderr.

The basic issue is that we were using logging to describe failures
to set up logging. However, those fail with bad error messages
rather than giving us the output we want. This was especially bad
when the failure was occuring on the server. Since 'ssh' will pass
back the stderr stream without bzr handling it at all.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
* Give a clearer message if the lockdir disappears after being apparently
39
39
  successfully taken.  (Martin Pool, #498378)
40
40
 
 
41
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
 
42
  than using ``warning()``. The log file is opened before logging is set
 
43
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
 
44
  users, rather than something nicer.
 
45
  (John Arbash Meinel, Barry Warsaw, #503886)
 
46
 
41
47
* The 2a format wasn't properly restarting autopacks when something
42
48
  changed underneath it (like another autopack). Now concurrent
43
49
  autopackers will properly succeed. (John Arbash Meinel, #495000)