mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Console log more detailed info on cf workers platform
This commit is contained in:
parent
c356353f60
commit
4cd8829bc6
1 changed files with 8 additions and 2 deletions
|
@ -105,9 +105,15 @@ app.use('*', logger(customLogger));
|
||||||
|
|
||||||
app.use('*', async (c, next) => {
|
app.use('*', async (c, next) => {
|
||||||
if (c.req.raw.cf) {
|
if (c.req.raw.cf) {
|
||||||
console.log(`Hello from ⛅ ${c.req.raw.cf.colo ?? 'UNK'}`);
|
const cf = c.req.raw.cf;
|
||||||
|
console.log(`Hello from ⛅ ${cf.colo ?? 'UNK'}`);
|
||||||
|
console.log(`📶 ${cf.httpProtocol ?? 'Unknown HTTP Protocol'} 🏓 ${cf.clientTcpRtt ?? 'N/A'} ms RTT 🔒 ${cf.tlsVersion ?? 'Unencrypted Connection'} (${cf.tlsCipher ?? ''})`)
|
||||||
|
console.log(`🗺️ ${cf.city ?? 'Unknown City'}, ${cf.regionCode ? (cf.regionCode + ', ') : ''}${cf.country ?? 'Unknown Country'} ${cf.isEUCountry ? '(EU)' : ''}`);
|
||||||
|
console.log(`🌐 ${c.req.header('x-real-ip') ?? ''} (${cf.asn ? ('AS' + cf.asn) : 'Unknown ASN'}, ${cf.asOrganization ?? 'Unknown Organization'})`);
|
||||||
|
} else {
|
||||||
|
console.log(`🌐 ${c.req.header('x-real-ip') ?? ''}`);
|
||||||
}
|
}
|
||||||
console.log('userAgent', c.req.header('user-agent'));
|
console.log('🕵️♂️', c.req.header('user-agent'));
|
||||||
await next();
|
await next();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue