You need to sign in or sign up before continuing.
Commit fdd82dde by G

testing logger with custom namespaced extension

parent 7508f215
...@@ -2,11 +2,21 @@ import { UserAuthenticationContextProvider } from "@/contexts/UserAuthentication ...@@ -2,11 +2,21 @@ import { UserAuthenticationContextProvider } from "@/contexts/UserAuthentication
import UnloggedUserStackNavigation from "@/navigations/UnloggedUserStackNavigation"; import UnloggedUserStackNavigation from "@/navigations/UnloggedUserStackNavigation";
import theme from "@/themes/Theme"; import theme from "@/themes/Theme";
import ProvideQueryClient from "@components/providers_wrappers/ProvideQueryClient"; import ProvideQueryClient from "@components/providers_wrappers/ProvideQueryClient";
import { LOG } from "@logger";
import { NavigationContainer } from "@react-navigation/native"; import { NavigationContainer } from "@react-navigation/native";
import { ThemeProvider } from "@shopify/restyle"; import { ThemeProvider } from "@shopify/restyle";
import { StyleSheet } from "react-native"; import { StyleSheet } from "react-native";
const log = LOG.extend("App");
export default function App() { export default function App() {
log.error("App started...");
log.warn("App started...");
log.info("App started...");
log.http("App started...");
log.debug("App started...");
log.verbose("App started...");
log.silly("App started...");
return ( return (
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<NavigationContainer> <NavigationContainer>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment