18:55:09 So @Smithx10 -> you are aware of /zones/$UUID/logs/console.log --> right? 18:56:18 It's bunyan output, but you could tail -f /zones/170e57f0-4ffe-4fad-af11-c235d04ee16d/logs/console.log | bunyan 18:56:29 (Obvs. your UUID may vary, term and conditions apply....) 18:57:06 It's VERBOSE, but you can parse bunyan output with a little effort... 18:57:17 only gotcha is that logs don't get written until a newline. 18:57:33 so my `ubuntu login: ` prompt isn't there until I hit return or enter a username. 18:57:43 Make sense @Smithx10 ? 19:10:59 Yeah, the packer-plugin-bhyve is actually spawning the bhyve process so I'll just capture stdout / err from there and write it to a file 19:11:56 was hoping to get an easy win and just be able to have bhyve do it vs the packer plugin. thanks 19:18:28 Sorry. 19:19:45 are you not running bhyve in a zone then? 19:20:35 Hmmm... the man page is off (at least in SmartOS) compared with what it's doing. 19:22:04 jbk: https://github.com/TritonDataCenter/packer-plugin-bhyve/blob/main/builder/bhyve/driver.go#L102 we have the builder zone 19:26:02 Yeah... and what you're working on is the sort of application it was built (no pun intended) for. 19:29:35 @Smithx10 we could always add some logging to the plugin too, might be useful to attach to the builds anyhow.. Can you describe what's your doing and why you need the output? I can see the need for it too.. just curious if we have different ideas. 19:52:00 Mostly to see if the VNC is hung and capture the logs from anaconda. https://github.com/TritonDataCenter/packer-plugin-bhyve/issues/11 19:55:00 yeh if we need to add support for extra logging to the code then we should just do that 20:14:24 ah nice.. I missed that issue notice somehow.. that makes sense to me 20:41:50 I was working on it, Was exploring the options and seeing what works in the UX. I had it all in to stdout and it wasn't great, so I was gonna just dump it to a file