aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorFridon <[email protected]>2022-06-24 13:10:11 +0400
committerFridon <[email protected]>2022-06-24 13:10:11 +0400
commit8622f3f37988333251265144c2fd8efb75a04d34 (patch)
tree66df4474ddd74be0ec0e0333d05eb671978c508d /src/util
parent001a25e6761f832dfc6241b7d97f54210ab39381 (diff)
downloadcountryfetch-8622f3f37988333251265144c2fd8efb75a04d34.tar.xz
countryfetch-8622f3f37988333251265144c2fd8efb75a04d34.zip
add lat/lng, subregion and timezones
Diffstat (limited to 'src/util')
-rw-r--r--src/util/logger.ts12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/util/logger.ts b/src/util/logger.ts
index 2e9045a..bfbffbf 100644
--- a/src/util/logger.ts
+++ b/src/util/logger.ts
@@ -23,14 +23,22 @@ export class Logger {
nano.cyan("\nCountry:\t"),
country.country,
country.flag,
+ nano.green("\nLat/Lng\t\t"),
+ country.latlng,
+ nano.green("\nPopulation:\t"),
+ country.population,
nano.green("\nLanguages:\t"),
country.languages,
nano.green("\nCapital:\t"),
country.capital,
+ nano.green("\nCapital Lat/Lng:"),
+ country.capitalLatLng,
nano.green("\nRegion:\t\t"),
country.region,
- nano.green("\nPopulation:\t"),
- country.population,
+ nano.green("\nSubregion:\t"),
+ country.subregion,
+ nano.green("\nTimezones:\t"),
+ country.timezones,
nano.green("\nCurrencies:\t"),
country.currencies
);