Can I wget the CDVR log file using WSL?

Trying to get the logfile using

 wget http://xxx.xxx.xxx.xxx:8089/admin/log/log

and the result goes to a file named log (as expected) but the result looks like this

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
    <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
    <link rel="stylesheet" href="/bundle.css">
    <link rel="manifest" href="/manifest.json">

...

Clearly I'm doing something wrong, right?

You're hitting the web admin, so you're getting HTML back.

wget http://xxx.xxx.xxx.xxx:8089/log

Thanks. That worked for me after removing one of the slashes before log.

ah! I fixed it in my original post.