# Downloading PX4 ulog files

Source: https://forum.modalai.com/topic/1524/downloading-px4-ulog-files
Category: VOXL 2 and VOXL 2 Mini (https://forum.modalai.com/category/26/voxl-2-and-voxl-2-mini)
Tags: voxl-2
Posted: 2022-11-03 09:36:29 UTC by mlarsen
Replies: 1 · Views: 936

## mlarsen · 2022-11-03 09:36:29 UTC

Hi ModalAI, I have not yet acquired a VOXL2 board, but we are in the process of planning our new avionics roadmap. In this context, I need to know how log files are retrieved if VOXL2 is running the PX4 on DSP.
Best regards,
Michael Larsen,
Sky-Watch

## Reply by modaltb (ModalAI staff) · 2022-11-03 14:57:31 UTC

Hi @mlarsen ,

If you're familiar with QGroundControl, similar to the pixhawks, you can use the Analyze > Logs feature to grab them (over an IP network not USB...)
![f8c31789-b1a1-4aa9-a498-d789ade3d86c-image.png](https://forum.modalai.com/assets/uploads/files/1667487221073-f8c31789-b1a1-4aa9-a498-d789ade3d86c-image.png) 

We are also saving this on disk here on VOXL2, eg:
```
voxl2:/$ cd /data/px4/log/
voxl2:/data/px4/log$ ls
sess001  sess003  sess005  sess007  sess009  sess011  sess013  sess015
sess002  sess004  sess006  sess008  sess010  sess012  sess014
voxl2:/data/px4/log$ ls sess001
log001.ulg  log002.ulg  log003.ulg
```

Using the USB connection over adb, you can pull from device to your host system, eg:

```
adb pull /data/px4/log/sess001/log001.ulg .
```
