logcat window in Visual Studio

Sysprogs forums Forums VisualGDB logcat window in Visual Studio

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #507
    Anonymous
    Participant

    Hi,

    I have a little issue since I updated my visualGDB : every time I launch a debugging session on Android, a logcat window appears in Visual Studio, but since a lot of information are logged, it just freeze Visual Studio and make it just unusable…
    Is there a way to remove the poping of this window every time I launch de debugger?

    Thanks!

    #2241
    support
    Keymaster

    Thanks for the feedback. Currently it is not supported, however we have added it to v2.8 feature list.

    #2242
    ket
    Participant

    It is taking a long time because all the logs stored on the Android device are re-fetched each time debugging begins. In order to not interfere with other logcat showing tools, the logcat window is made not to delete the logs from the device when they are fetched. Thus if the Android device has been running a long time, the logs have been accumulating as well.

    Currently there are two ways to solve the slowness:
    1) Display the logcat all the time for the debug Android device. Then the messages are updated constantly and the messages won’t be re-fetched when debugging begins. To display the logcat between debugging sessions go to ‘Android->View LogCat’.
    2) Clear the logcat on the Android device manually. For this go to ‘Android->Open Android shell’ and enter the command ‘logcat -c’ there. Please not that this will irreversibly delete all the stored logcat messages from the device.

    #2243
    Anonymous
    Participant

    Yep, that was my backup solution, I just thought there was a simple way to remove it
    Anyway thanks for the quick answer!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.