Skip to content

Commit

Permalink
chore: remove annoying log, and make it possible to delete core pipes
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Feb 25, 2025
1 parent 0c89ae5 commit d77f9f6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion screenpipe-app-tauri/components/pipe-store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { useLoginDialog } from "./login-dialog";
import { PermissionButtons } from "./status/permission-buttons";
import { usePlatform } from "@/lib/hooks/use-platform";

const corePipes: string[] = ["data-table", "search"];
const corePipes: string[] = [];

export const PipeStore: React.FC = () => {
const { health } = useHealthCheck();
Expand Down
2 changes: 0 additions & 2 deletions screenpipe-server/src/auto_destruct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ pub async fn watch_pid(pid: u32) -> bool {
let pid_alive = String::from_utf8_lossy(&pid_output.stdout).contains(&pid.to_string());
let app_alive = !String::from_utf8_lossy(&app_output.stdout).is_empty();

info!("pid alive: {}, app alive: {}", pid_alive, app_alive);

if !pid_alive || !app_alive {
return true;
}
Expand Down

0 comments on commit d77f9f6

Please sign in to comment.