Change logging

1. Remove a few needless logs
2. Label where the logs are coming from
This commit is contained in:
Brandon Presley 2024-02-07 17:31:13 +13:00
parent 5ce3b9e69c
commit 9b881c3d58
8 changed files with 7 additions and 9 deletions

View File

@ -55,7 +55,7 @@ const App = () => {
await AppDataSource.initialize().catch((e) => setError(e.toString()));
const gotSettings = await settingsRepo.findOne({ where: {} });
console.log({ gotSettings });
console.log(`${App.name}.mount`, { gotSettings });
setAppSettings({
startup: gotSettings.startup,
theme: gotSettings.theme,

View File

@ -54,7 +54,7 @@ export default function EditExercises() {
.groupBy("name")
.getMany()
.then((gymSets) => {
console.log({ gymSets });
console.log(`${EditExercises.name}.focus:`, { gymSets });
setOldNames(gymSets.map((set) => set.name).join(", "));
setOldSteps(gymSets.map((set) => set.steps).join(", "));
setOldMinutes(gymSets.map((set) => set.minutes).join(", "));

View File

@ -48,7 +48,7 @@ export default function ExerciseItem({
}, [dark, names, item.name]);
const press = () => {
console.log({ names });
console.log(`${ExerciseItem.name}.press:`, { names });
if (names.length === 0)
return navigation.navigate("EditExercise", { gymSet: item });
const removing = names.find((name) => name === item.name);

View File

@ -72,7 +72,7 @@ export default function SetList() {
);
const next = async () => {
console.log({ end, refreshing });
console.log(`${SetList.name}.next:`, { end, refreshing });
if (end || refreshing) return;
const newOffset = offset + LIMIT;
console.log(`${SetList.name}.next:`, { offset, newOffset, term });

View File

@ -74,7 +74,6 @@ export default function StartPlan() {
where: { name: exercise.name },
order: { created: "desc" },
});
console.log({ last });
if (!last) return;
delete last.id;
console.log(`${StartPlan.name}.select:`, { last });
@ -129,7 +128,7 @@ export default function StartPlan() {
const canNotify = await check(PERMISSIONS.ANDROID.POST_NOTIFICATIONS);
if (canNotify === RESULTS.DENIED)
await request(PERMISSIONS.ANDROID.POST_NOTIFICATIONS);
NativeModules.AlarmModule.timer(milliseconds);
NativeModules.AlarmModule.timer(milliseconds, `${exercise.name} (${exercise.total + 1}/${best.sets})`);
};
return (

View File

@ -11,7 +11,6 @@ export default function TimerProgress() {
"tick",
({ minutes, seconds }: TickEvent) => {
setProgress((Number(minutes) * 60 + Number(seconds)) / 210);
console.log({ minutes, seconds });
}
);
return description.remove;

View File

@ -84,7 +84,7 @@ export default function ViewGraph() {
.getRawMany()
.then(newWeights => newWeights.map(set => ({ ...set, weight: convertWeight(set.weight, set.unit, unit) })))
.then((newWeights) => {
console.log({ weights: newWeights });
console.log(`${ViewGraph.name}.oneRepMax:`, { weights: newWeights });
setWeights(newWeights);
});
}

View File

@ -70,7 +70,7 @@ export default function WeightList() {
);
const next = async () => {
console.log({ end, refreshing });
console.log(`${WeightList.name}.next:`, { end, refreshing });
if (end || refreshing) return;
const newOffset = offset + LIMIT;
console.log(`${WeightList.name}.next:`, { offset, newOffset, term });