diff --git a/macosx/Torrent.m b/macosx/Torrent.m index 81a747a4e..4f4dfdc6e 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -423,6 +423,7 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80 uint64_t remainingSpace = [[fsAttributes objectForKey: NSFileSystemFreeSize] unsignedLongLongValue], torrentRemaining = [self size] * (uint64_t)(1.0 - [self progress]); + NSLog(@"Volume: %@", [[[NSFileManager defaultManager] componentsToDisplayForPath: [self dataLocation]] objectAtIndex: 0]); NSLog(@"Remaining disk space: %qu (%@)", remainingSpace, [NSString stringForFileSize: remainingSpace]); NSLog(@"Torrent remaining size: %qu (%@)", torrentRemaining, [NSString stringForFileSize: torrentRemaining]);