Onde está o arquivo de log do vagrant?

10

Estou tentando depurar um problema relacionado ao vagabundo ou ao VirtualBox (consulte taiga-vagrant não consegue fornecer um ambiente taiga de trabalho # 21 .

O comando VAGRANT_LOG=debug vagrant up --debug imprime muitas informações úteis. Onde este log é armazenado no entanto?

Editar: VAGRANT_LOG=debug vagrant up é na verdade o mesmo que vagrant up --debug . Eu trabalho em / com: Funtoo-Linux, Vagrant 1.4.3 e VirtualBox 4.3.32.

    
por Nikos Alexandris 20.11.2015 / 12:48

2 respostas

11

O Vagrant não guarda nenhum registro. A saída de, por exemplo, vagrant up --debug , pode ser redirecionada para um arquivo como

vagrant up --provision --debug &> debug_log

Fragmento de uma sessão de IRC em #vagrant na Freenode:

[18:29] <NikosA> ada: really, where is the debug "file" stored, by default? Isn't there any?

[18:29] <ada> vagrant does not write to log files

..

[18:29] <ada> virtualbox does

[18:29] <NikosA> I am even trying to >> debug_log in the command line, and it simply does not keep any of these valuable details.

[18:29] <NikosA> ok, so I'd check for the VBox logs?

[18:30] <ada> if you're using the vbox provider, yes

..

[18:31] <dtrainor> NikosA, redirect the output with &>

    
por 17.12.2015 / 19:06
0

Por uma resposta no Stackoverflow , o VirtualBox armazenará os registros em ~/VirtualBox VMs/vagrant_box_name/Logs .

    
por 04.03.2016 / 20:42